:root {
    /* Supplementing existing variables in index.html */
    --accent-hover: #d97706;
    /* Darker Gold for hover state */
    --text-secondary: #6b7280;
    /* Mapping to existing text-light */
}

/* Premium Header & Contact Design */
.glass-nav {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 4px 12px 4px 12px;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-main {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    line-height: 1;
}

.brand-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding-bottom: 4px;
    transition: all 0.3s;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem !important;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
}

.nav-cta:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white !important;
    transform: translateY(-2px);
}

/* Ensure Header/Nav Stability */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.hero {
    margin-top: 0;
    /* Reset */
    padding-top: 80px;
    /* Account for fixed nav */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Premium Contact Section */
.contact-section-premium {
    position: relative;
    padding: 6rem 2rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.contact-section-premium .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    /* Dark overlay */
    z-index: 1;
}

.contact-section-premium .container {
    position: relative;
    z-index: 2;
}

.premium-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.contact-info-panel h2.white {
    color: white;
    margin-bottom: 1rem;
}

.contact-info-panel .section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.step-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.step-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Glassy Form */
.glass-form {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 2.5rem !important;
}

.glass-form h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.glass-form label {
    color: var(--text-secondary) !important;
}

.glass-form input,
.glass-form textarea {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.glass-form input:focus,
.glass-form textarea:focus {
    border-color: var(--accent-color) !important;
}

.premium-direct {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-direct h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.premium-direct .info-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.premium-direct .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.premium-direct a {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
    .premium-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* Fix: Ensure Floating Bar is always on top */
.floating-bar {
    z-index: 9999 !important;
}
