@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
    --adm-navy: #01233c;
    --adm-gold: #C6944B;
    --adm-gold-hover: #b5833a;
    --adm-text-dark: #1a1a1a;
    --adm-text-muted: #666;
    --adm-bg-light: #ffffff;
    --adm-font-serif: 'Libre Baskerville', serif;
    --adm-font-sans: 'Inter', sans-serif;
}

.adm-premium-hero {
    padding: 80px 0 0 0;
    background-color: var(--adm-bg-light);
    overflow: hidden;
}

.adm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.adm-split-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: -60px; /* Offset for the overlapping form */
    position: relative;
    z-index: 1;
}

.adm-info-column {
    flex: 1;
    padding-bottom: 80px;
}

.adm-image-column {
    flex: 1.2;
}

.adm-image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

/* Feature List */
.adm-feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.adm-feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.adm-feature-item:nth-child(1) { animation-delay: 0.1s; }
.adm-feature-item:nth-child(2) { animation-delay: 0.2s; }
.adm-feature-item:nth-child(3) { animation-delay: 0.3s; }
.adm-feature-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.adm-feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    color: var(--adm-gold);
    background: rgba(198, 148, 75, 0.05);
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.adm-feature-item:hover .adm-feature-icon {
    background: rgba(198, 148, 75, 0.1);
    transform: scale(1.1);
}

.adm-feature-icon svg {
    width: 100%;
    height: 100%;
}

.adm-feature-content h3 {
    font-family: var(--adm-font-serif);
    font-size: 1.4rem;
    color: var(--adm-navy);
    margin: 0 0 6px 0;
    font-weight: 700;
}

.adm-feature-content p {
    font-family: var(--adm-font-sans);
    font-size: 0.95rem;
    color: var(--adm-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Registration Form Bar */
.adm-registration-bar {
    background-color: var(--adm-navy);
    border-radius: 12px;
    padding: 50px;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    margin-top: -40px;
    background-image: linear-gradient(135deg, #01233c 0%, #01233c 100%);
    overflow: hidden;
}

.adm-registration-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.adm-reg-header {
    margin-bottom: 35px;
}

.adm-reg-header h2 {
    font-family: var(--adm-font-serif);
    font-size: 2rem;
    margin: 0 0 10px 0;
    color: white;
}

.adm-reg-header p {
    font-family: var(--adm-font-sans);
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.adm-inline-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.adm-form-group {
    flex: 1;
    min-width: 200px;
}

.adm-form-group input, 
.adm-form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: white;
    color: var(--adm-text-dark);
    font-family: var(--adm-font-sans);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.adm-form-group input::placeholder {
    color: #999;
}

.adm-form-group input:focus, 
.adm-form-group select:focus {
    outline: none;
    border-color: var(--adm-gold);
    box-shadow: 0 0 0 3px rgba(198, 148, 75, 0.2);
}

.adm-submit-btn {
    background-color: var(--adm-gold);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 6px;
    font-family: var(--adm-font-sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adm-submit-btn:hover {
    background-color: var(--adm-gold-hover);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .adm-split-layout {
        flex-direction: column;
        margin-bottom: 0;
    }
    
    .adm-info-column {
        padding-bottom: 40px;
    }
    
    .adm-registration-bar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .adm-inline-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .adm-form-group {
        width: 100%;
    }
    
    .adm-premium-hero {
        padding: 40px 0;
    }
}
