/* assets/css/style.css */

/* --- Custom Properties & Variables --- */
:root {
    --primary-dark: #0e204e;
    --bg-light: #faf9f7;
    --accent-sky: #7fdff8;
    --text-muted: #929aa7;
    --accent-orange: #ff6b35;
    --accent-orange-hover: #e0531f;
    --accent-blue: #0077b6;
    --accent-blue-hover: #005f92;

    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --card-bg-light: #ffffff;
    --card-bg-dark: #162a5c;

    --border-light: rgba(146, 154, 167, 0.2);
    --border-dark: rgba(127, 223, 248, 0.15);
    --glow-sky: 0 0 15px rgba(127, 223, 248, 0.3);

    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(14, 32, 78, 0.08), 0 8px 10px -6px rgba(14, 32, 78, 0.05);
    --shadow-lg: 0 20px 35px -10px rgba(14, 32, 78, 0.15);
}

/* --- Global Resets & Defaults --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

input,
select,
textarea,
button {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

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

/* --- Helper Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-orange);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.btn-cta:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: 2px solid var(--primary-dark);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-sky {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-sky);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(127, 223, 248, 0.3);
}

.btn-sky:hover {
    background-color: #5ed2f0;
    transform: translateY(-2px);
}

/* --- Header Section --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    height: 70px;
    transition: var(--transition-smooth);
}

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

/* Logo & Brand Assets */
.header-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px;
    background: transparent;
    transition: var(--transition-smooth);
    border-radius: 12px;
}

.header-brand-logo:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 4px 12px rgba(0, 200, 255, 0.3));
}

.header-brand-logo svg {
    height: 44px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.logo span span {
    color: var(--accent-orange);
}

/* Header Search */
.header-search-wrapper {
    flex: 0 1 250px;
    margin: 0 20px;
}

.search-input-container {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-input-container input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border-radius: 20px;
    background-color: rgba(146, 154, 167, 0.1);
    color: var(--primary-dark);
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.form-group select {
    background-color: #ffffff;
}

/* Wizard Step Progress Bar */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.wizard-step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.wizard-step-item .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wizard-step-item.active {
    color: var(--accent-orange);
}

.wizard-step-item.active .step-num {
    background-color: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

.wizard-step-item.completed {
    color: #059669;
}

.wizard-step-item.completed .step-num {
    background-color: #10b981;
    color: #ffffff;
}

.wizard-step-line {
    flex: 1;
    height: 2px;
    background-color: #e2e8f0;
    margin: 0 8px;
}

.wizard-step-panel {
    display: none;
    animation: fadeInStep 0.3s ease-in-out;
}

.wizard-step-panel.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

/* Wizard Button Actions */
.wizard-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    align-items: center;
}

.btn-secondary {
    background-color: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

/* Completion Success Card Styling */
.wizard-success-card {
    text-align: center;
    padding: 24px 12px;
    animation: fadeInStep 0.4s ease-in-out;
}

.success-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #d1fae5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.wizard-success-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.success-highlight-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1.5px solid #a7f3d0;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.success-highlight-box .highlight-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #065f46;
    margin: 0;
    line-height: 1.5;
}

.success-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.search-input-container input:focus {
    background-color: #ffffff;
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-item {
    position: relative;
}

.menu-item>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-dark);
    border-radius: 6px;
}

.menu-item:hover>a {
    background-color: rgba(14, 32, 78, 0.05);
}

.chevron-icon {
    transition: var(--transition-smooth);
}

.menu-item:hover .chevron-icon {
    transform: rotate(180deg);
}

/* Dropdowns */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 12px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

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

.dropdown-menu ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 6px;
    color: var(--text-dark);
}

.dropdown-menu ul li a:hover {
    background-color: rgba(14, 32, 78, 0.05);
    color: var(--accent-orange);
    padding-left: 16px;
}

/* Megamenu */
.dropdown-menu.megamenu {
    min-width: 580px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 16px;
    padding: 20px;
}

.megamenu-column h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 6px;
}

.megamenu-column ul li a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.megamenu-column ul li a:hover {
    color: var(--accent-orange);
    padding-left: 6px;
    background: none;
}

.promo-column {
    background-color: var(--primary-dark);
    border-radius: 8px;
    padding: 16px;
    color: #ffffff;
}

.promo-box h5 {
    color: var(--accent-sky);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.promo-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.promo-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.promo-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-admin-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px dashed var(--border-light);
}

.btn-admin-link:hover {
    color: var(--primary-dark);
    background-color: #ffffff;
    border-color: var(--primary-dark);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #06112d 100%);
    color: var(--text-light);
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--bg-light) 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(127, 223, 248, 0.1);
    color: var(--accent-sky);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(127, 223, 248, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent-sky);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.hero-illustration svg {
    filter: drop-shadow(0 15px 30px rgba(127, 223, 248, 0.15));
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- Bento Box Grid Layout --- */
.bento-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-tag {
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 24px;
}

/* Common Bento Cell Styles */
.bento-cell {
    background-color: var(--card-bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.bento-cell:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 32, 78, 0.15);
}

/* Bento Cell sizing variants */
.bento-col-2 {
    grid-column: span 2;
}

.bento-row-2 {
    grid-row: span 2;
}

/* Cell Specific Styling */
.bento-tool-card {
    background: linear-gradient(135deg, #ffffff 0%, #f4f6fb 100%);
    border-left: 4px solid var(--accent-blue);
}

.cell-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(14, 32, 78, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.bento-tool-card .cell-icon {
    background-color: rgba(0, 119, 182, 0.1);
    color: var(--accent-blue);
}

.cell-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.cell-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* Tools Preview Interface inside Bento */
.tool-preview-form {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.tool-preview-form input {
    flex-grow: 1;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.tool-preview-form input:focus {
    border-color: var(--accent-blue);
}

.tool-preview-form button {
    background-color: var(--accent-blue);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.tool-preview-form button:hover {
    background-color: var(--accent-blue-hover);
}

/* Tech Stack Badge grid */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tech-badge {
    background-color: rgba(14, 32, 78, 0.05);
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 500;
    color: var(--primary-dark);
}

/* Feature/Counter cell */
.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0c1c45 100%);
    color: #ffffff;
}

.counter-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-sky);
    font-family: var(--font-heading);
}

.counter-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Promo/CTA Grid */
.bento-consult-cell {
    background: linear-gradient(135deg, #0e204e 0%, #162d66 100%);
    color: #ffffff;
    justify-content: space-between;
}

.bento-consult-cell h3 {
    color: #ffffff;
}

.bento-consult-cell p {
    color: #b9c1d0;
}

/* Slide/Guide box */
.guide-slide {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guide-slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.guide-tag {
    font-size: 0.75rem;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* --- Dedicated Tools Layout --- */
.tools-section {
    padding: 80px 0;
}

.tools-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.tool-card-detailed {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.tool-card-header {
    padding: 30px;
    background: linear-gradient(to right, var(--primary-dark) 0%, #173278 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-card-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.tool-card-header p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.tool-card-body {
    padding: 30px;
}

.tool-input-group {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin-bottom: 24px;
}

.tool-input-group input {
    flex-grow: 1;
    border: 1px solid var(--border-light);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.tool-input-group input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.tool-input-group button {
    background-color: var(--accent-blue);
    color: white;
    font-weight: 600;
    padding: 0 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.tool-input-group button:hover {
    background-color: var(--accent-blue-hover);
}

/* Loader Animation */
.tool-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    gap: 16px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 119, 182, 0.1);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Tool Results styling */
.tool-results-panel {
    display: none;
    border-top: 1px solid var(--border-light);
    margin-top: 20px;
    padding-top: 24px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.score-circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 119, 182, 0.03);
    border-radius: 12px;
    padding: 24px;
    border: 1px dashed var(--border-light);
}

.score-circle {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-blue) calc(var(--score) * 1%), #e2e8f0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.score-circle::after {
    content: '';
    position: absolute;
    width: 98px;
    height: 98px;
    background-color: #ffffff;
    border-radius: 50%;
}

.score-val {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.score-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.results-details h3 {
    margin-bottom: 12px;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.results-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background-color: #f8fafc;
}

.results-item-status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.status-good {
    background-color: #dcfce7;
    color: #166534;
}

.status-warning {
    background-color: #fef9c3;
    color: #854d0e;
}

.status-bad {
    background-color: #fee2e2;
    color: #991b1b;
}

.results-item-content h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.results-item-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Domain result table styles */
.domain-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.domain-results-table th,
.domain-results-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.domain-results-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
}

.badge-status {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.badge-status.available {
    background-color: #dcfce7;
    color: #166534;
}

.badge-status.taken {
    background-color: #fee2e2;
    color: #991b1b;
}

/* --- Consultation Form --- */
.consultation-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    position: relative;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.consultation-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.consultation-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-point-item {
    display: flex;
    gap: 16px;
}

.info-point-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-point-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-point-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Consultation Form Card */
.consultation-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: #f8fafc;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-status-alert {
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}

.form-status-alert.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status-alert.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

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

.review-card {
    border: 1px solid var(--border-light);
    padding: 30px;
    border-radius: 16px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: #eab308;
    margin-bottom: 12px;
}

.review-body {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--accent-sky);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-details h4 {
    font-size: 0.95rem;
    margin: 0;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Submit Review Form Box */
.submit-review-box {
    margin-top: 60px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Guides Page --- */
.guides-hero {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 60px 0;
}

.guides-hero h1 {
    color: #ffffff;
    font-size: 2.5rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.guides-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.sidebar-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.sidebar-card ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-radius: 6px;
}

.sidebar-card ul li a:hover,
.sidebar-card ul li.active a {
    background-color: rgba(14, 32, 78, 0.05);
    color: var(--accent-orange);
    font-weight: 600;
}

.guide-article {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.guide-article h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.guide-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    gap: 15px;
}

.guide-body h3 {
    font-size: 1.4rem;
    margin: 24px 0 12px;
}

.guide-body p {
    margin-bottom: 16px;
    color: #334155;
}

.guide-body ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 16px;
}

.guide-body ul li {
    margin-bottom: 6px;
}

/* --- Blog Directory & Article --- */
.blog-hero {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 60px 0;
}

.blog-hero h1 {
    color: #ffffff;
    font-size: 2.5rem;
}

.blog-section {
    padding: 60px 0;
}

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

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

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

.blog-card-img {
    height: 180px;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-sky);
}

.blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.blog-card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.blog-card-link:hover {
    color: var(--accent-orange);
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-post-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.blog-post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    gap: 20px;
}

.blog-post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

.blog-post-body p {
    margin-bottom: 24px;
}

.blog-post-body h3 {
    font-size: 1.6rem;
    margin: 36px 0 16px;
    color: var(--primary-dark);
}

.blog-post-body ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.blog-post-body ul li {
    margin-bottom: 8px;
}

/* --- Admin Dashboard CSS Layout --- */
.admin-login-body {
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.admin-login-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.admin-login-card h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: center;
}

.admin-login-card p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

/* Dashboard Layout */
.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 30px 20px;
    border-right: 1px solid var(--border-dark);
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.admin-sidebar-logo span {
    color: var(--accent-sky);
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: #b9c1d0;
    transition: var(--transition-smooth);
}

.admin-nav-item:hover,
.admin-nav-item.active {
    background-color: rgba(127, 223, 248, 0.1);
    color: #ffffff;
}

.admin-nav-item.logout {
    margin-top: 100px;
    border: 1px dashed rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.admin-nav-item.logout:hover {
    background-color: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.admin-main {
    background-color: #f8fafc;
    padding: 40px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    font-size: 2rem;
}

.admin-header-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header-profile span {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Stats Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(14, 32, 78, 0.05);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card:nth-child(2) .stat-icon {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
}

.stat-card:nth-child(3) .stat-icon {
    background-color: rgba(0, 119, 182, 0.1);
    color: var(--accent-blue);
}

.stat-card:nth-child(4) .stat-icon {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-info h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.stat-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Admin Table Data Grid */
.admin-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.admin-table th {
    background-color: #f8fafc;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.admin-table tbody tr:hover {
    background-color: #fafbfc;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.admin-btn.btn-approve {
    background-color: #dcfce7;
    color: #166534;
}

.admin-btn.btn-approve:hover {
    background-color: #bbf7d0;
}

.admin-btn.btn-edit {
    background-color: #e0f2fe;
    color: #0369a1;
}

.admin-btn.btn-edit:hover {
    background-color: #bae6fd;
}

.admin-btn.btn-delete {
    background-color: #fee2e2;
    color: #991b1b;
}

.admin-btn.btn-delete:hover {
    background-color: #fecaca;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.status-badge.pending {
    background-color: #fef9c3;
    color: #854d0e;
}

.status-badge.contacted {
    background-color: #e0f2fe;
    color: #0369a1;
}

.status-badge.completed {
    background-color: #dcfce7;
    color: #166534;
}

/* CRUD Form modal/styling */
.admin-form-group {
    margin-bottom: 20px;
}

.admin-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background-color: #ffffff;
    font-family: var(--font-body);
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    border-color: var(--primary-dark);
}

/* --- Site Footer Section --- */
.site-footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo {
    color: #ffffff;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-links a:hover {
    background-color: var(--accent-sky);
    color: var(--primary-dark);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent-sky);
    padding-left: 4px;
}

.contact-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-info strong {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Media Queries / Responsiveness --- */

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(170px, auto);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-illustration {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 60px;
    }

    .header-search-wrapper {
        display: none;
        /* Hide main search bar on mobile headers, access through overlay */
    }

    .main-navigation {
        display: none;
    }

    .btn-cta {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .header-actions .btn-cta {
        display: none;
        /* Hide header CTA button on mobile, show inside menu overlay */
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-col-2 {
        grid-column: span 1;
    }

    .bento-row-2 {
        grid-row: span 1;
    }

    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none;
        /* In production, add a slideout sidebar for mobile admins */
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

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

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .reviews-grid-list {
        grid-template-columns: 1fr;
    }

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

    .guides-sidebar {
        position: static;
        margin-bottom: 30px;
    }

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

    .blog-post-header h1 {
        font-size: 2rem;
    }

    /* Container & Spacing */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Site Header & Mobile Nav */
    .site-header {
        padding: 12px 0;
    }

    .mobile-menu-btn {
        display: block !important;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 6px;
    }

    /* Hero Banner Mobile Styling */
    .hero-section {
        padding: 60px 0 40px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 0.98rem !important;
        line-height: 1.6;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-ctas .btn-cta,
    .hero-ctas .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Bento Grid Layout Mobile Adaptations */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .bento-col-2,
    .bento-col-3 {
        grid-column: span 1 !important;
    }

    .bento-cell {
        padding: 22px !important;
        border-radius: 14px !important;
    }

    /* Consultation Grid & Wizard Mobile */
    .consultation-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .consultation-card {
        padding: 22px !important;
        border-radius: 14px !important;
    }

    .wizard-progress {
        margin-bottom: 24px;
    }

    .wizard-step {
        gap: 6px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .step-label {
        font-size: 0.72rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    /* Capabilities & Team Grids Mobile */
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .team-card {
        padding: 24px !important;
        text-align: center;
    }

    /* Deliverables & FAQ Grid */
    .deliverables-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

/* Mobile Nav Overlay Toggle */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 32, 78, 0.98);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu-container {
    position: relative;
    padding: 80px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
}

.mobile-search input {
    width: 100%;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-links a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #ffffff;
}

.mobile-menu-links a:hover {
    color: var(--accent-sky);
}

.btn-mobile-cta {
    display: inline-block;
    background-color: var(--accent-orange);
    color: white !important;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
}

/* --- Team Section --- */
.team-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 32, 78, 0.15);
}

.team-avatar-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--primary-dark);
    border: 3px solid var(--accent-sky);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar-container svg {
    width: 56px;
    height: 56px;
    color: var(--accent-sky);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* --- Tools Redesign & Tabs UI --- */
.tools-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tools-tab-btn {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
}

.tools-tab-btn.active,
.tools-tab-btn:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(14, 32, 78, 0.2);
}

.tools-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tools-tab-panel.active {
    display: block;
}

.tool-card-detailed.glowing-sky {
    box-shadow: 0 10px 30px rgba(127, 223, 248, 0.08);
    border: 1px solid rgba(127, 223, 248, 0.35);
}

.tool-card-detailed.glowing-sky:hover {
    box-shadow: 0 15px 35px rgba(127, 223, 248, 0.15);
    border-color: var(--accent-sky);
}

/* Domain Price Result UI */
.price-details-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.price-highlight-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #173278 100%);
    border-radius: 12px;
    padding: 30px;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-value-large {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent-sky);
    font-family: var(--font-heading);
    margin: 10px 0;
    letter-spacing: -0.02em;
}

@media (max-width: 900px) {
    .price-details-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Standalone Consultation Page Styling */
.consultation-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
    color: #ffffff;
    padding: 60px 0 40px 0;
    text-align: center;
}

.consultation-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0 16px 0;
    line-height: 1.2;
}

.consultation-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.consult-hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.88rem;
    color: var(--accent-sky);
    font-weight: 500;
}

.consultation-page-section {
    padding: 60px 0;
    background-color: var(--bg-cream);
}

.consult-card-feature {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.consult-card-feature h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.blueprint-deliverables-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deliverable-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border-light);
}

.deliverable-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.deliv-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: rgba(0, 119, 182, 0.1);
    color: var(--accent-blue);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.deliv-text h4 {
    font-size: 0.98rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.deliv-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ Accordion Styling */
.faq-accordion-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.faq-accordion-box h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-question {
    padding: 14px 18px;
    background: #f8fafc;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-orange);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 14px 18px;
    background: #ffffff;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid var(--border-light);
}

.faq-item.active .faq-answer {
    display: block;
}


/* ==========================================================================
   ADMIN PORTAL RESPONSIVE OPTIMIZATION (MOBILE & TABLET VIEW < 1024px)
   Desktop layout (> 1024px) remains 100% untouched.
   ========================================================================== */

/* Mobile Top Header Toggle Bar (Hidden on Desktop) */
.admin-mobile-bar {
    display: none;
}

@media (max-width: 1024px) {

    /* Mobile Top Bar Bar */
    .admin-mobile-bar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        background-color: #0f172a;
        border-bottom: 1px solid #1e293b;
        color: #ffffff;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .btn-admin-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background-color: #1e293b;
        color: #38bdf8;
        border: 1px solid #334155;
        padding: 6px 14px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.85rem;
    }

    .btn-admin-toggle:hover {
        background-color: #334155;
    }

    /* Layout & Collapsible Sidebar */
    .admin-layout {
        flex-direction: column !important;
        min-height: auto !important;
    }

    .admin-sidebar {
        display: none;
        width: 100% !important;
        min-height: auto !important;
        position: static !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border-light);
        padding: 15px 20px !important;
        background-color: #0f172a !important;
    }

    .admin-sidebar.mobile-open {
        display: block !important;
    }

    .admin-sidebar .admin-sidebar-logo {
        display: none;
        /* Already rendered in mobile top bar */
    }

    .admin-nav-item {
        padding: 10px 14px !important;
        margin-bottom: 6px !important;
    }

    /* Main Admin Body Area */
    .admin-main {
        padding: 20px 15px !important;
        width: 100% !important;
    }

    .admin-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .admin-header h1 {
        font-size: 1.5rem !important;
    }

    /* Grid Layouts Stacked into Single Column */
    .settings-grid-layout,
    .team-admin-grid,
    .admin-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .admin-card {
        padding: 20px !important;
        border-radius: 12px !important;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        gap: 12px !important;
    }

    /* Touch-Scrollable Data Tables */
    .admin-table-wrapper {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 8px !important;
        border: 1px solid var(--border-light) !important;
        margin-bottom: 15px !important;
    }

    .admin-table {
        min-width: 650px !important;
        /* Forces horizontal scroll on small screens for scannability */
    }

    .admin-table th,
    .admin-table td {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
    }

    /* Admin Modals (Reply & Details Dialogs) */
    .modal-card {
        width: 95% !important;
        max-width: 580px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        padding: 20px !important;
        border-radius: 14px !important;
        margin: 20px auto !important;
    }
}

@media (max-width: 480px) {
    .admin-main {
        padding: 15px 10px !important;
    }

    .admin-card {
        padding: 15px !important;
    }

    .btn-action {
        padding: 4px 8px !important;
        font-size: 0.75rem !important;
    }
}

/* --- Custom Interactive Tools UI Components --- */
.domain-results-table td {
    color: var(--primary-dark) !important;
}

.domain-results-table td strong {
    color: var(--primary-dark) !important;
}

/* Custom File Dropzone for Background Remover */
.custom-file-dropzone {
    width: 100%;
    border: 2px dashed rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.04);
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 20px;
}

.custom-file-dropzone:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.08);
    transform: translateY(-2px);
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dropzone-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.dropzone-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dropzone-filename {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-top: 6px;
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
}

/* Custom Percentage Range Slider */
.custom-slider-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.slider-header label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.slider-pill {
    padding: 3px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-limit {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.custom-range-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    transition: background 0.3s;
}

.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-orange);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
    border: 2px solid #ffffff;
}

.custom-range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-orange);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
    border: 2px solid #ffffff;
}

/* Password Generator Card */
.password-display-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 20px;
}

.password-output-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #38bdf8;
    letter-spacing: 1px;
    word-break: break-all;
}

.btn-copy-pass {
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-copy-pass:hover {
    background: var(--accent-orange-hover);
}