/* 
========================================================================
   DICESIVE DEBT - PREMIUM CORPORATE STYLE SHEET
   Color Palette: Dark Navy Blue, White, and Subtle Gold Highlights
========================================================================
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600;1,700&display=swap');

/* --- Design Tokens / Root Variables --- */
:root {
    /* Color Palette */
    --bg-dark: #001A3F;
    --navy-deep: #06234D;
    --navy-card: #0A2E63;
    --navy-light: #153F7A;
    --navy-border: rgba(21, 58, 114, 0.4);

    --gold-primary: #DCA825;
    --gold-light: #FDE893;
    --gold-dark: #A57E12;
    --gold-gradient: linear-gradient(135deg, #FDE893 0%, #DCA825 50%, #A57E12 100%);
    --gold-glow: rgba(220, 168, 37, 0.2);

    --white: #FFFFFF;
    --white-soft: #F8F9FA;
    --text-main: #FFFFFF;
    --text-muted: #8892B0;
    --text-desc: #A8B2D1;

    /* Layout & Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Status Colors */
    --status-new: #3498db;
    --status-review: #f39c12;
    --status-pending: #e67e22;
    --status-strategy: #9b59b6;
    --status-started: #2980b9;
    --status-coord: #1abc9c;
    --status-resolved: #2ecc71;
    --status-closed: #7f8c8d;

    /* Priorities */
    --priority-normal: #7f8c8d;
    --priority-important: #34495e;
    --priority-urgent: #e74c3c;
    --priority-highvalue: #d4af37;
}

/* --- Base & Reset Rules --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* --- Premium Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* --- Container Utility --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Elegant Typography & Accent Titles --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.legal-font {
    font-family: 'Cinzel', serif;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-desc);
    max-width: 650px;
    margin: 0 auto 50px auto;
}

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

/* --- Sticky Header --- */
.header-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 26, 63, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(220, 168, 37, 0.15);
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled {
    background: rgba(0, 26, 63, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(220, 168, 37, 0.35);
}

.header-container {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand/Logo Layout */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--gold-primary) !important;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.82rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.04em;
    color: var(--gold-primary);
    text-transform: none;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-desc);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-header {
    background: transparent;
    border: 1.5px solid var(--gold-primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
    transition: var(--transition-smooth);
}

.btn-header:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    border-color: transparent;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- SPA View Navigation Containers --- */
.page-view {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.page-view.active {
    display: block;
}

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

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

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 120px 0 100px 0;
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 80% 20%, rgba(21, 48, 91, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

/* Doha Skyline Vector overlay */
.skyline-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
}

.hero-trust-line {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-line::before,
.hero-trust-line::after {
    content: '';
    width: 12px;
    height: 1px;
    background-color: var(--gold-primary);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-desc);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.hero-brand-association {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.assoc-prefix {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.assoc-firm {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Feature bullets layout from the user's reference image */
.hero-features-list {
    margin: 28px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.feature-square {
    width: 14px;
    height: 14px;
    background-color: var(--white);
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
}

.hero-logo-large {
    width: 320px;
    height: 320px;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {

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

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

/* --- SERVICES PREVIEW SECTION --- */
.services-section {
    padding: 100px 0;
    background-color: var(--navy-deep);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.service-card {
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gold-gradient);
}

.service-card:hover .service-icon-wrapper svg {
    stroke: var(--bg-dark);
}

.service-icon-wrapper svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold-primary);
    fill: none;
    stroke-width: 1.5;
    transition: var(--transition-smooth);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-desc);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.service-card:hover .service-card-link {
    color: var(--white);
}

/* --- PROBLEM & CHALLENGE SECTION --- */
.problem-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

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

.problem-content {
    max-width: 550px;
}

.problem-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.problem-desc {
    font-size: 1.1rem;
    color: var(--text-desc);
    margin-bottom: 30px;
}

.problem-cta-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.problem-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.problem-item {
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
}

.problem-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.problem-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 77, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.problem-item-icon svg {
    width: 24px;
    height: 24px;
    stroke: #FF4D4D;
    fill: none;
    stroke-width: 1.5;
}

.problem-item:nth-child(2) .problem-item-icon,
.problem-item:nth-child(3) .problem-item-icon,
.problem-item:nth-child(4) .problem-item-icon {
    background: rgba(212, 175, 55, 0.08);
}

.problem-item:nth-child(2) .problem-item-icon svg,
.problem-item:nth-child(3) .problem-item-icon svg,
.problem-item:nth-child(4) .problem-item-icon svg {
    stroke: var(--gold-primary);
}

.problem-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* --- WHY CHOOSE US SECTION --- */
.why-section {
    padding: 100px 0;
    background-color: var(--navy-deep);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.why-left {
    max-width: 480px;
}

.why-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 20px;
    background-color: rgba(17, 34, 64, 0.4);
    backdrop-filter: blur(10px);
}

.why-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: calc(var(--border-radius) - 6px);
    overflow: hidden;
    position: relative;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image-svg {
    width: 70%;
    opacity: 0.85;
}

.why-stat-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.why-stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.why-stat-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.why-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background-color: var(--navy-card);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateX(4px);
    background-color: rgba(21, 44, 80, 0.6);
}

.why-card-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-card-title {
    font-size: 1.05rem;
    font-weight: 600;
}

/* --- PROCESS SECTION --- */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 40px;
}

.process-steps::after {
    content: '';
    position: absolute;
    top: 55px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
    z-index: 1;
}

.process-step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step-num {
    width: 70px;
    height: 70px;
    background-color: var(--navy-card);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.process-step-card:hover .process-step-num {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.process-step-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step-desc {
    font-size: 0.9rem;
    color: var(--text-desc);
    max-width: 250px;
    margin: 0 auto;
}

/* --- ASSOCIATION SECTION --- */
.assoc-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--navy-deep) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.assoc-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.assoc-box {
    background-color: var(--navy-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 40px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.assoc-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-desc);
    margin-bottom: 16px;
}

.assoc-firm-name {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.assoc-sub {
    font-size: 0.95rem;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- DETAILED PAGES --- */
.detail-page {
    padding: 80px 0 100px 0;
    background-color: var(--bg-dark);
}

.detail-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.detail-card {
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.detail-card-num {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.25);
    margin-bottom: 16px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.detail-card:hover .detail-card-num {
    color: var(--gold-primary);
}

.detail-card-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.detail-card-desc {
    font-size: 0.95rem;
    color: var(--text-desc);
    flex-grow: 1;
}

/* --- ABOUT US VIEW --- */
.about-section {
    padding: 100px 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-desc);
    margin-bottom: 24px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-card {
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.value-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.value-card-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-primary);
    fill: none;
    stroke-width: 2;
}

.value-card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.value-card-desc {
    font-size: 0.9rem;
    color: var(--text-desc);
}

/* --- LEAD CAPTURE FORM SECTION --- */
.form-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 50%, rgba(21, 48, 91, 0.1) 0%, transparent 60%);
}

.form-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    background-color: var(--navy-deep);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.form-info-side {
    background-color: var(--navy-card);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.form-info-header h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.form-info-header p {
    font-size: 0.95rem;
    color: var(--text-desc);
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-primary);
    fill: none;
    stroke-width: 2;
}

.contact-detail-content h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail-content p {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.form-info-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

/* Form Styling */
.form-input-side {
    padding: 60px;
}

.consultation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-desc);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-control {
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    background-color: rgba(17, 34, 64, 0.8);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4AF37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

/* File Upload styling */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-upload-trigger {
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 14px 18px;
    background-color: var(--navy-card);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-desc);
    transition: var(--transition-smooth);
}

.file-upload-trigger svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-primary);
    fill: none;
    stroke-width: 1.5;
}

.file-upload-wrapper:hover .file-upload-trigger {
    border-color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.03);
    color: var(--white);
}

/* Form Success Overlay */
.form-success-message {
    grid-column: span 2;
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(46, 204, 113, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.form-success-icon svg {
    width: 32px;
    height: 32px;
    stroke: #2ecc71;
    stroke-width: 2.5;
    fill: none;
}

.form-success-message h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2ecc71;
}

.form-success-message p {
    color: var(--text-desc);
    font-size: 0.95rem;
}

/* --- ADMIN PANEL CONCEPT --- */
.admin-view {
    min-height: 100vh;
    background-color: #040810;
    color: var(--white);
}

/* Login Page Overlay */
.admin-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.admin-login-card {
    background-color: var(--navy-deep);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius);
    padding: 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.admin-login-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
}

.admin-login-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.admin-login-card p {
    font-size: 0.9rem;
    color: var(--text-desc);
    margin-bottom: 32px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.login-error-msg {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: -10px;
    margin-bottom: 10px;
    display: none;
    font-weight: 600;
}

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

.admin-sidebar {
    background-color: var(--navy-deep);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.admin-sidebar-header svg {
    width: 32px;
    height: 32px;
}

.admin-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.admin-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-desc);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    width: 100%;
    text-align: left;
    background: transparent;
}

.admin-menu-item:hover,
.admin-menu-item.active {
    color: var(--white);
    background-color: var(--navy-light);
}

.admin-menu-item.active {
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 8px 8px 0;
}

.admin-menu-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.admin-sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.admin-logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FF4D4D;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
}

/* Admin Main Content area */
.admin-main {
    padding: 40px;
    overflow-y: auto;
    max-height: 100vh;
}

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

.admin-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.9rem;
}

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

.admin-stat-card {
    background-color: var(--navy-deep);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.admin-stat-info h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.admin-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
    fill: none;
    stroke-width: 1.5;
}

/* Dashboard Inquiry List and Detail view Split */
.admin-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
}

.admin-table-container {
    background-color: var(--navy-deep);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.inquiry-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.inquiry-table th {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.inquiry-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
    color: var(--text-desc);
    vertical-align: middle;
}

.inquiry-table tr {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.inquiry-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.inquiry-table tr.selected {
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold-primary);
}

.inquiry-name {
    font-weight: 600;
    color: var(--white);
}

/* Badge tags styles */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Case Status badges */
.badge-new {
    background-color: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.badge-review {
    background-color: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.badge-pending {
    background-color: rgba(230, 126, 34, 0.15);
    color: #e67e22;
}

.badge-strategy {
    background-color: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
}

.badge-started {
    background-color: rgba(41, 128, 185, 0.15);
    color: #2980b9;
}

.badge-coord {
    background-color: rgba(26, 188, 156, 0.15);
    color: #1abc9c;
}

.badge-resolved {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.badge-closed {
    background-color: rgba(127, 140, 141, 0.15);
    color: #7f8c8d;
}

/* Priority badges */
.priority-normal {
    background-color: rgba(127, 140, 141, 0.1);
    color: #95a5a6;
    border: 1px solid rgba(127, 140, 141, 0.2);
}

.priority-important {
    background-color: rgba(52, 73, 94, 0.2);
    color: #5dade2;
    border: 1px solid rgba(52, 73, 94, 0.4);
}

.priority-urgent {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.priority-highvalue {
    background-color: rgba(212, 175, 55, 0.1);
    color: #f1c40f;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Inquiry Detail Panel */
.admin-detail-panel {
    background-color: var(--navy-deep);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}

.panel-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.panel-empty-state svg {
    width: 64px;
    height: 64px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 1;
    margin-bottom: 16px;
}

.detail-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.detail-panel-header h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.detail-panel-header span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail-meta-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-meta-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    font-size: 0.9rem;
}

.detail-meta-item .lbl {
    color: var(--text-muted);
    font-weight: 500;
}

.detail-meta-item .val {
    color: var(--white);
    font-weight: 600;
}

.detail-case-text {
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    font-size: 0.9rem;
    color: var(--text-desc);
    max-height: 120px;
    overflow-y: auto;
}

/* Action Button triggers (Call, WhatsApp, Email) */
.detail-action-triggers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.btn-action-trigger {
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
}

.btn-action-phone {
    background-color: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.btn-action-phone:hover {
    background-color: #3498db;
    color: #fff;
}

.btn-action-whatsapp {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.btn-action-whatsapp:hover {
    background-color: #2ecc71;
    color: #fff;
}

.btn-action-email {
    background-color: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
}

.btn-action-email:hover {
    background-color: #f1c40f;
    color: #fff;
}

/* Control adjustments inside Admin details */
.detail-control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-control-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.detail-notes-textarea {
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px;
    color: var(--white);
    font-size: 0.9rem;
    resize: none;
    min-height: 80px;
    transition: var(--transition-smooth);
}

.detail-notes-textarea:focus {
    border-color: var(--gold-primary);
}

.btn-save-notes {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

/* Document preview link */
.doc-preview-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--navy-card);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-primary);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.doc-preview-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.doc-preview-link:hover {
    border-color: var(--gold-primary);
    color: var(--white);
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* --- FOOTER --- */
footer {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(220, 168, 37, 0.2);
    padding: 80px 0 30px 0;
    color: var(--text-desc);
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-logo-svg {
    width: 44px;
    height: 44px;
}

.footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 340px;
}

.footer-links-side h4,
.footer-contact-side h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-primary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- MOBILE RESPONSIVENESS MEDIA QUERIES --- */
@media (max-width: 1024px) {

    /* Prevent iOS auto-zooming on text input focus */
    .form-control,
    .form-control select,
    .form-control option,
    .file-upload-wrapper,
    .detail-notes-textarea {
        font-size: 16px !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .why-left {
        max-width: 100%;
        text-align: center;
    }

    .why-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-stat-box {
        bottom: -10px;
        right: -10px;
    }

    /* --- ADMIN CRM PANEL MOBILE TABS LAYOUT --- */
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none;
        /* Hide desktop sidebar */
    }

    .admin-navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .admin-user-profile {
        width: 100%;
        justify-content: flex-start;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .admin-mobile-tabs {
        display: flex;
        gap: 10px;
        margin: 20px 0;
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 14px;
    }

    .admin-mobile-tab-btn {
        flex: 1;
        background: var(--navy-card);
        border: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text-desc);
        padding: 12px 8px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.85rem;
        cursor: pointer;
        text-align: center;
        transition: var(--transition-smooth);
    }

    .admin-mobile-tab-btn.active {
        background: var(--gold-gradient);
        color: var(--bg-dark);
        border-color: transparent;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    }

    .admin-mobile-tab-btn.logout-accent {
        background: rgba(231, 76, 60, 0.1);
        color: #e74c3c;
        border-color: rgba(231, 76, 60, 0.2);
    }

    .admin-mobile-tab-btn.logout-accent:hover {
        background: #e74c3c;
        color: #fff;
    }

    /* Admin content switching active/hidden state */
    .admin-content-grid {
        display: block;
        /* Stack container blocks */
    }

    .admin-content-grid.show-list .admin-table-container {
        display: block;
    }

    .admin-content-grid.show-list .admin-detail-panel {
        display: none;
    }

    .admin-content-grid.show-detail .admin-table-container {
        display: none;
    }

    .admin-content-grid.show-detail .admin-detail-panel {
        display: flex;
        width: 100%;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Compress Spacings for Mobile Fluid Feel */
    .hero-section,
    .services-section,
    .problem-section,
    .why-section,
    .process-section,
    .form-section,
    .assoc-section,
    .detail-page {
        padding: 60px 0;
    }

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

    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .header-container {
        padding: 0 16px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(5, 11, 20, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }

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

    .hero-logo-large {
        width: 220px;
        height: 220px;
    }

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

    .problem-content {
        max-width: 100%;
        text-align: center;
    }

    .problem-title {
        font-size: 1.85rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .process-steps::after {
        display: none;
    }

    .assoc-box {
        padding: 30px 20px;
        border-radius: var(--border-radius);
    }

    .assoc-firm-name {
        font-size: 1.55rem;
    }

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

    .form-info-side {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px 24px;
    }

    .form-input-side {
        padding: 40px 24px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .hero-ctas button,
    .hero-ctas .spa-route-trigger {
        width: 100%;
        justify-content: center;
    }

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

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

    .why-right-grid {
        grid-template-columns: 1fr;
    }

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

    .why-stat-box {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
}