/* public/assets/css/school-premium.css */
/* Uses variables from common.css */

/* Typography Overrides */
.cis-title {
    /* font-family: 'Playfair Display', serif; */
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.cis-accent-line {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 1rem 0;
}

/* Form Styling Optimization */
.cis-enquiry-card {
    background: var(--white);
    border: 1px solid rgba(26, 102, 166, 0.08);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.cis-input {
    background-color: var(--light);
    border: 1px solid transparent;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
}

.cis-input:focus {
    background-color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 102, 166, 0.1);
}

/* Profile Leadership styling */
.cis-profile-card {
    background: var(--white);
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.cis-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cis-img-container {
    background: var(--light);
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid rgba(26, 102, 166, 0.05);
}

.cis-quote-block {
    border-left: 4px solid var(--secondary);
    background-color: var(--light);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

/* Premium Compliance Table styling */
.cis-table-container {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 102, 166, 0.05);
}

.cis-table thead {
    background-color: var(--primary);
}

.cis-table th {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1.25rem 1.5rem;
}

.cis-table td {
    padding: 1.25rem 1.5rem;
    color: var(--dark);
}

.cis-btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: var(--transition);
    text-transform: uppercase;
}

.cis-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Footer Note styling */
.cis-footnote {
    background-color: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 1.25rem;
    border-radius: 4px;
}

.cis-footnote span a {
    text-decoration: none;
    color: #000;
    transition: var(--transition);
}

.cis-footnote span a:hover {
    color: green;
}