@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800&display=swap');

:root {
    --background: #ffffff;
    --foreground: #111111;
    --card: #ffffff;
    --border: #e2e8f0;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --brand: #0284c7; /* sky-600 */
    --brand-foreground: #ffffff;
    --sky-100: #e0f2fe;
    --sky-600: #0284c7;
    --violet-100: #ede9fe;
    --violet-600: #7c3aed;
    --amber-100: #fef3c7;
    --amber-600: #d97706;
    --emerald-100: #d1fae5;
    --emerald-600: #059669;
    --rose-100: #ffe4e6;
    --rose-600: #e11d48;
    --indigo-100: #e0e7ff;
    --indigo-600: #4f46e5;
    --orange-100: #ffedd5;
    --orange-600: #ea580c;
    --showcase-bg: #111827;
    --showcase-fg: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */
.site-header {
    position: relative;
    z-index: 40;
    background: linear-gradient(to bottom, #e0f2fe, #f0f9ff, var(--background));
}

.header-top {
    max-width: 64rem;
    margin: 0 auto;
    padding: 1rem 1rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding-bottom: 0.25rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 1rem;
    background-color: var(--foreground);
    color: var(--background);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-text h1 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    color: var(--foreground);
}

.logo-subtitle {
    margin-top: -0.1rem;
    font-size: 1.15rem;
    font-family: 'Caveat', cursive;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.05em;
    color: #64748b;
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.fee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.625rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(2, 132, 199, 0.2);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

@media (max-width: 640px) {
    .hidden-mobile {
        display: none;
    }
}

.fee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background-color: var(--brand);
    color: var(--brand-foreground);
}

.fee-icon svg { width: 1rem; height: 1rem; }

.fee-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.fee-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--foreground);
}

.fee-sub {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

.avatar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background-color: var(--foreground);
    color: var(--background);
    border: none;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.avatar-btn:hover {
    transform: translateY(-2px);
}

/* TABS */
.tabs-scroll {
    max-width: 64rem;
    margin: 1rem auto 0;
    padding: 0 1rem;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}
.tabs-scroll::-webkit-scrollbar { display: none; } /* Chrome */

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem 0.625rem;
    border-radius: 1rem 1rem 0 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.8;
    flex-shrink: 0;
}

.tab-item.active {
    background-color: var(--card);
    opacity: 1;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.bg-sky-100 { background-color: var(--sky-100); }
.text-sky-600 { color: var(--sky-600); }
.bg-violet-100 { background-color: var(--violet-100); }
.text-violet-600 { color: var(--violet-600); }
.bg-amber-100 { background-color: var(--amber-100); }
.text-amber-600 { color: var(--amber-600); }
.bg-emerald-100 { background-color: var(--emerald-100); }
.text-emerald-600 { color: var(--emerald-600); }
.bg-rose-100 { background-color: var(--rose-100); }
.text-rose-600 { color: var(--rose-600); }
.bg-indigo-100 { background-color: var(--indigo-100); }
.text-indigo-600 { color: var(--indigo-600); }
.bg-orange-100 { background-color: var(--orange-100); }
.text-orange-600 { color: var(--orange-600); }

.tab-label {
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--muted-foreground);
}

.tab-item.active .tab-label {
    font-weight: 800;
    color: var(--foreground);
}

/* SEARCH AREA */
.search-section {
    background-color: var(--card);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    max-width: 64rem;
    margin: 0 auto;
}

.search-bar {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background-color: var(--background);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: border-color 0.2s;
    position: relative;
}

.search-bar:focus-within {
    border-color: var(--brand);
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    color: var(--foreground);
    outline: none;
    font-family: inherit;
}

.search-bar input::placeholder {
    color: var(--muted-foreground);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 50;
    display: none;
    flex-direction: column;
}

.search-suggestion-item {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--card-foreground);
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background-color: var(--muted);
}

/* Account Dropdown */
.account-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 14rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    z-index: 100;
    display: none;
    flex-direction: column;
    padding: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--card-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-item i {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.7;
}

.dropdown-item:hover {
    background-color: var(--muted);
    color: var(--brand);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border);
    margin: 0.5rem 0;
}

.search-btn {
    border: none;
    background: transparent;
    border-left: 1px solid var(--border);
    padding-left: 0.625rem;
    color: var(--muted-foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.bookmark-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--foreground);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    cursor: pointer;
    transition: background-color 0.2s;
}

.bookmark-btn:hover {
    background-color: var(--muted);
}

.subtitle-text {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    background-color: var(--card); /* To blend with search */
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}

/* SHOWCASE CARDS */
.showcase-section {
    margin-top: 1.25rem;
}

.showcase-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.25rem 1rem 1rem;
    margin: 0 auto;
    max-width: 64rem;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.showcase-scroll::-webkit-scrollbar { display: none; }

.showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 20rem;
    height: 24rem;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 1.5rem;
    background-color: var(--showcase-bg);
    color: var(--showcase-fg);
    padding: 1.5rem;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition: transform 0.2s;
}

@media (min-width: 640px) {
    .showcase-card {
        width: 22rem;
        height: 26rem;
    }
}

.showcase-card:hover {
    transform: translateY(-4px);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 10;
}

.showcase-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.showcase-card p {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.showcase-card:hover .card-image {
    transform: scale(1.05);
}

/* PROJECT CATEGORIES */
.categories-section {
    max-width: 64rem;
    margin: 2rem auto;
    padding: 0 1rem;
}

.categories-marquee-wrapper {
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.categories-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    min-width: 8rem;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.category-item.active .cat-icon {
    box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--brand);
}

.cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-item:hover .cat-icon {
    transform: scale(1.05);
}

.category-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
}

/* Details Panel */
.category-details-panel {
    margin-top: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, margin-top 0.3s ease-out;
}

.category-details-panel.open {
    max-height: 800px; /* Large enough to fit any list */
    opacity: 1;
}

.panel-content {
    padding: 2rem;
}

.panel-content .card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.panel-content .card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.panel-content .card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.panel-content .proj-list-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.panel-content .proj-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* INFO SECTIONS */
.info-section {
    max-width: 64rem;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* HOW IT WORKS */
.steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .steps-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* EVERY ORDER INCLUDES */
.includes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .includes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.include-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.include-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.include-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.include-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* PRICING */
.pricing-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.pricing-sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.slider-group {
    margin-bottom: 2rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 1rem;
}

.slider-val {
    font-weight: 800;
}

input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 0.5rem;
    background: var(--border);
    border-radius: 999px;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--brand);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}

.breakdown {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.breakdown-row:last-child {
    border-bottom: none;
}

.breakdown-row.total {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--foreground);
}

/* REVIEWS */
.reviews-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: thin;
}

.review-card {
    min-width: 300px;
    max-width: 350px;
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
}

.review-project {
    font-size: 0.75rem;
    color: var(--brand);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.25rem;
}

.stars {
    color: #eab308;
    font-size: 1rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    font-style: italic;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--foreground);
    user-select: none;
}

.faq-q i {
    transition: transform 0.3s;
    color: var(--brand);
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    padding: 0 1.25rem;
}

.faq-item.open .faq-a {
    max-height: 20rem;
    padding: 0 1.25rem 1rem;
}

/* FOOTER */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 4rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-reg-symbol {
    font-family: 'Times New Roman', Times, serif !important;
    font-weight: 700;
    font-size: 0.75rem;
    color: #000000 !important;
    vertical-align: super;
    position: relative;
    top: -1.2em;
    margin-left: 2px;
}

.footer-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-contact-item a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--brand);
}

.footer-contact-item .icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--brand);
}

.footer-contact-item .icon svg {
    width: 100%;
    height: 100%;
}

.social-btns {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.social-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* BOTTOM STICKY NAV */
.bottom-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
}

.pricing-banner {
    background: linear-gradient(to top, #e0f2fe, rgba(240, 249, 255, 0.6));
    padding: 0.625rem 1rem;
    text-align: center;
}

.pricing-banner p {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
}

.pricing-banner span {
    color: var(--brand);
    font-weight: 800;
}

.bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--card);
    padding: 0.75rem 1rem 1.25rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.nav-item:hover, .nav-item.active {
    color: var(--brand);
}

.nav-item span {
    font-size: 0.625rem;
    font-weight: 600;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.nav-logo-text {
    font-family: 'Times New Roman', Times, serif !important;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    color: #111111;
    display: inline-flex;
    align-items: flex-end;
    line-height: 1;
}
.nav-logo-text .sf-cap {
    color: #00E5FF !important;
    font-family: 'Times New Roman', Times, serif !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px #000000 !important;
    text-shadow: none !important;
}
.nav-logo-text .f-accent {
    color: #00E5FF !important;
}
.nav-logo-text .text-slate {
    color: #334155 !important;
}
.reg-symbol {
    font-family: 'Times New Roman', Times, serif !important;
    font-weight: 700;
    font-size: 0.8rem;
    color: #000000 !important;
    vertical-align: super;
    line-height: 1;
    margin-left: 4px;
    position: relative;
    top: -1.2em;
}

/* Floating Submit Project Button */
.floating-submit-btn {
    position: fixed;
    bottom: 6rem;
    left: 2rem;
    background-color: #00E5FF;
    color: #111111;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.4);
    z-index: 1000;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.floating-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 229, 255, 0.5);
    background-color: #00d4ec;
    color: #111111;
}

.floating-submit-btn svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .floating-submit-btn {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    .floating-submit-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Project Submit Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.modal-overlay.hidden .modal-card {
    transform: translateY(20px);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
}

.modal-close-btn:hover {
    color: var(--foreground);
    background-color: var(--secondary);
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.login-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.login-banner i {
    color: #00E5FF;
    flex-shrink: 0;
}

.login-banner a {
    color: #00E5FF;
    font-weight: 600;
    text-decoration: underline;
}

.modal-form .form-group {
    margin-bottom: 1.25rem;
}

.modal-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.modal-form input[type="text"],
.modal-form input[type="number"],
.modal-form input[type="tel"],
.modal-form textarea,
.file-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    color: #1e293b;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.budget-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

.budget-input-wrapper input {
    padding-left: 1rem;
}

.submit-btn.full-width {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
    background-color: #00E5FF;
    color: #111111;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn.full-width:hover {
    background-color: #00d4ec;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.4);
}








/* STYLES EXTRACTED FROM OLD INDEX */

    /* ── PROJECT CATEGORIES ── */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .proj-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      backdrop-filter: blur(10px);
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
    }

    .proj-card:hover {
      transform: translateY(-5px);
      border-color: rgba(2, 132, 199, 0.4);
      box-shadow: 0 12px 30px rgba(2, 132, 199, 0.1);
    }

    .card-vis {
      height: 180px;
      position: relative;
      overflow: hidden;
      background: var(--muted);
    }

    .card-vis-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.4s;
    }

    .proj-card:hover .card-vis-img {
      transform: scale(1.05);
    }

    .card-vis::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .card-body {
      padding: 20px 24px 10px;
      flex-grow: 1;
    }

    .card-tag {
      font-family: 'Outfit', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--brand);
      margin-bottom: 8px;
    }

    .card-title {
      font-family: 'Outfit', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--foreground);
    }

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

    .proj-list-wrap {
      margin-top: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, margin-top 0.3s, opacity 0.3s;
      opacity: 0;
    }

    .proj-card.open .proj-list-wrap {
      max-height: 800px;
      margin-top: 16px;
      opacity: 1;
    }

    .proj-list-label {
      font-family: 'Outfit', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--brand);
      margin-bottom: 10px;
    }

    .proj-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
      max-height: 350px;
      overflow-y: auto;
      padding-right: 5px;
    }

    .proj-list::-webkit-scrollbar {
      width: 4px;
    }

    .proj-list::-webkit-scrollbar-thumb {
      background: rgba(0, 212, 212, 0.3);
      border-radius: 4px;
    }

    .proj-list li {
      font-size: 0.85rem;
      color: var(--text-muted);
      padding: 6px 8px 6px 18px;
      position: relative;
      border-radius: 6px;
      transition: background 0.2s, color 0.2s;
    }

    .proj-list li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--brand);
      font-size: 0.8rem;
      top: 7px;
    }

    .proj-list li:hover {
      background: rgba(2, 132, 199, 0.1);
      color: var(--foreground);
    }

    .card-expand-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: calc(100% - 48px);
      margin: 0 24px 20px;
      background: rgba(2, 132, 199, 0.08);
      border: 1px solid rgba(2, 132, 199, 0.25);
      border-radius: 6px;
      color: var(--brand);
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 10px 14px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }

    .card-expand-btn:hover {
      background: rgba(2, 132, 199, 0.15);
      border-color: var(--brand);
    }

    .card-expand-icon {
      font-size: 0.8rem;
      transition: transform 0.3s;
      display: inline-block;
    }

    .proj-card.open .card-expand-icon {
      transform: rotate(180deg);
    }

    .card-footer {
      display: flex;
      justify-content: space-between;
