/* ================================
   Design System variables
   ================================ */
   :root {
    --primary-color: #D4AF37; /* Metallic Gold, often used in legal contexts */
    --primary-light: #F9E596;
    --primary-dark: #9A7B2C;
    
    --bg-color-main: #0B0F19; /* Deep indigo/black */
    --bg-color-secondary: #05080F;
    
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
    --font-heading: 'Cinzel', serif; /* Elegant serif for law school */
    --font-sans: 'Inter', sans-serif;
    --font-ui: 'Outfit', sans-serif;
}

/* ================================
   Reset & Base Styles
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color-main);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* ================================
   Background Effects
   ================================ */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 15, 25, 0) 0%, var(--bg-color-secondary) 100%);
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    animation: float 20s ease-in-out infinite alternate;
}

.orb-1 {
    top: 10%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.15); /* Gold orb */
}

.orb-2 {
    bottom: 15%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: rgba(30, 58, 138, 0.3); /* Blue orb */
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* ================================
   Container & Glass Card
   ================================ */
.container {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    z-index: 10;
    perspective: 1000px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: var(--glass-shadow), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

/* Light beam effect inside card */
.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 40%,
        rgba(255, 255, 255, 0) 50%
    );
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 1;
}

/* ================================
   Logo
   ================================ */
.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    z-index: 2;
}

.logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 50%; /* If logo is round, this helps. If rectangular, adjust accordingly */
    background: white; /* In case logo is dark or needs white bg */
    padding: 5px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
}

/* ================================
   Header & Typography
   ================================ */
.header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1) inset;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.main-title span {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-light);
    font-weight: 500;
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* ================================
   Divider
   ================================ */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    gap: 1rem;
    opacity: 0.6;
    z-index: 2;
    position: relative;
}

.divider .line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.scale-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

/* ================================
   Contact Section
   ================================ */
.info-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
}

.info-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
}

.hover-effect:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.05);
}

.icon-wrapper {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.info-text h3 {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-text p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.info-text a {
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* ================================
   Footer
   ================================ */
.footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-ui);
    z-index: 2;
    position: relative;
}

/* ================================
   Animations
   ================================ */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Media Queries
   ================================ */
@media (max-width: 600px) {
    .glass-card {
        padding: 3rem 1.5rem;
    }
    
    .main-title {
        font-size: 2.25rem;
    }
    
    .main-title span {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .info-item {
        padding: 1.25rem;
    }
}
