:root {
    --primary: #7B1113;
    /* Deep Maroon */
    --primary-dark: #5A0C0E;
    --secondary: #C09A4D;
    /* Gold */
    --accent: #FDF2F2;
    --text-main: #1D1D1D;
    --text-muted: #555555;
    --white: #ffffff;
    --gray-light: #F7F7F7;
    --border: #E5E5E5;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    height: 60px;
}

.brand-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

.brand-domain {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    position: relative;
    padding: 120px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content .badges {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-content .badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 4px;
    border: 1px solid rgba(123, 17, 19, 0.1);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p.desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-usp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.usp-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.usp-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.usp-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.accredited-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--secondary);
    max-width: 320px;
}

.accredited-box h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.accredited-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form */
.reg-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
}

.reg-card h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.reg-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.reg-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    margin-bottom: 8px;
}

.form-field.full {
    grid-column: span 2;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

.form-field label span {
    color: var(--primary);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
}

.btn-submit {
    grid-column: span 2;
    background: var(--primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.secure-tag {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Programs */
.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-head {
    margin-bottom: 64px;
}

.section-head h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-head h2 span {
    color: var(--primary);
}

.section-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.p-card {
    padding: 48px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.p-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-soft);
    border-color: var(--secondary);
}

.p-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.p-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.p-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.p-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.p-list {
    list-style: none;
    margin-bottom: 32px;
}

.p-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.p-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.p-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Why Choose */
.bg-gray {
    background: var(--gray-light);
}

/* Why Choose Section - Row Layout */
.why-row {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.why-col {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.why-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border);
}

.why-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary);
    font-size: 1.8rem;
    transition: var(--transition);
}

.why-col:hover .why-icon-circle {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.why-col h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.why-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .why-row {
        flex-wrap: wrap;
    }

    .why-col {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }

    .why-col:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .why-col {
        flex: 0 0 100%;
    }

    .why-col::after {
        display: none;
    }
}


@media (max-width: 768px) {
    .why-bento {
        grid-template-columns: 1fr;
    }
}

/* Journey */
.journey-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 64px;
}

.journey-line {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right, #ddd, #ddd 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.j-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.j-num {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 32px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.j-step i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 16px;
    display: block;
}

/* CTA */
.cta-box {
    background: var(--primary);
    color: white;
    padding: 64px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.btn-secondary {
    background: var(--secondary);
    color: #111;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}


/* Global Locations */
.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.location-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: left;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: var(--secondary);
}

.loc-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.location-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.location-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-card p i {
    color: var(--secondary);
    margin-top: 3px;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    padding: 100px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 64px;
}

.footer-brand .brand img {
    height: 80px;
    width: auto;
}

.footer-brand p {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--primary);
    color: white;
}

.footer-links h4 {
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive System */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-layout {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-head h2 {
        font-size: 2.5rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-usp {
        justify-content: center;
    }

    .accredited-box {
        margin: 24px auto 0;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .why-row {
        flex-wrap: wrap;
    }

    .why-col {
        flex: 0 0 50%;
        margin-bottom: 32px;
    }

    .why-col:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-flex {
        justify-content: space-between;
        position: relative;
    }

    .brand {
        justify-content: flex-start;
        width: auto;
    }

    .menu-toggle {
        display: block;
    }

    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 40px 20px;
        box-shadow: var(--shadow-soft);
        z-index: 1000;
        border-bottom: 1px solid var(--border);
    }

    #nav-menu.active {
        display: block;
    }

    #nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    #nav-menu ul li {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-usp {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .journey-wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 48px;
    }

    .journey-line {
        display: none;
    }

    .j-step {
        text-align: center;
        display: block;
        padding: 20px 10px;
        background: #f6f4f0;
        border-radius: 10px;
        border: 1px solid #d9ae56;
    }

    .j-num {
        margin: 0 auto 32px;
    }

    .j-step i {
        margin-bottom: 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .brand {
        justify-content: center;
    }

    .socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom div {
        margin-top: 10px;
    }

    .footer-bottom a {
        margin: 0 10px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .reg-card {
        padding: 32px 24px;
    }

    .why-col {
        flex: 0 0 100%;
    }

    .why-col::after {
        display: none;
    }

    .container {
        padding: 0 20px;
    }
}

/* ==========================================================================
   Premium UI/UX System Additions (Dropdowns, Accordions, GEO, Placeholders)
   ========================================================================== */

/* Navbar Dropdowns (Desktop) */
@media (min-width: 1025px) {
    nav ul li.dropdown {
        position: relative;
        padding-bottom: 10px;
        margin-bottom: -10px;
    }
    
    nav ul li.dropdown .dropdown-trigger {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
    }
    
    nav ul li.dropdown .dropdown-trigger i {
        font-size: 0.75rem;
        transition: transform 0.2s ease;
    }
    
    nav ul li.dropdown:hover .dropdown-trigger i {
        transform: rotate(180deg);
        color: var(--primary);
    }
    
    nav ul li.dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(12px);
        background: var(--white);
        min-width: 250px;
        box-shadow: var(--shadow-strong);
        border-radius: 8px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        z-index: 1100;
        border: 1px solid var(--border);
        display: flex;
        flex-direction: column;
    }
    
    nav ul li.dropdown .dropdown-menu a {
        padding: 10px 20px;
        font-weight: 500;
        font-size: 0.9rem;
        color: var(--text-main);
        display: block;
        transition: var(--transition);
        text-align: left;
    }
    
    nav ul li.dropdown .dropdown-menu a:hover {
        background: var(--accent);
        color: var(--primary);
        padding-left: 24px;
    }
    
    nav ul li.dropdown:hover .dropdown-menu,
    nav ul li.dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile Dropdown styles */
@media (max-width: 1024px) {
    #nav-menu {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    nav ul li.dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    nav ul li.dropdown .dropdown-trigger {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 10px 0;
        cursor: pointer;
    }
    
    nav ul li.dropdown .dropdown-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--gray-light);
        border-radius: 6px;
        margin-top: 4px;
        padding: 4px 0;
    }
    
    nav ul li.dropdown.active .dropdown-menu {
        display: flex;
    }
    
    nav ul li.dropdown.active .dropdown-trigger i {
        transform: rotate(180deg);
    }
    
    nav ul li.dropdown .dropdown-menu a {
        padding: 10px 20px;
        font-size: 0.85rem;
        color: var(--text-muted);
    }
}

/* GEO/GYO Answer Block styling */
.geo-answer-block {
    background: var(--gray-light);
    border-left: 4px solid var(--primary);
    padding: 24px 30px;
    border-radius: 0 8px 8px 0;
    margin: 32px 0 48px;
    box-shadow: var(--shadow-soft);
}
.geo-answer-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    font-weight: 500;
    margin: 0;
}
.geo-answer-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 8px;
}

/* Academic Placeholder style */
.academic-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FDF9F2;
    border: 1px dashed var(--secondary);
    color: #8C6D27;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 6px 0;
    font-family: inherit;
}
.academic-placeholder i {
    font-size: 0.9rem;
    color: var(--secondary);
}

/* Form Styles Improvements */
.form-field select,
.form-field input,
.form-field textarea {
    border: 1.5px solid var(--border);
    transition: var(--transition);
}
.form-field select:focus,
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123, 17, 19, 0.1);
}
.form-error {
    color: #D32F2F;
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 600;
}

/* Toast System styling */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.toast {
    background: #111;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast.success {
    border-left: 4px solid #4CAF50;
}
.toast.success i {
    color: #4CAF50;
    font-size: 1.1rem;
}

/* Accordion FAQ */
.faq-accordion {
    max-width: 850px;
    margin: 40px auto 0;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-soft);
}
.faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-question i {
    font-size: 0.85rem;
    color: var(--secondary);
    transition: transform 0.25s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.25s ease-out;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 350px;
}

/* Info grid for layouts */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-soft);
}
.info-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-card h3 i {
    color: var(--secondary);
}

/* Curriculum Table styling */
.premium-table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}
.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--white);
}
.premium-table th {
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
}
.premium-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-main);
    vertical-align: top;
}
.premium-table tr:last-child td {
    border-bottom: none;
}
.premium-table tr:nth-child(even) {
    background: var(--gray-light);
}

/* Step tracker styling */
.step-tracker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}
@media (max-width: 991px) {
    .step-tracker {
        grid-template-columns: 1fr;
    }
}
.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-soft);
}
.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(192, 154, 77, 0.2);
    line-height: 1;
}
.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.step-card h3 i {
    color: var(--secondary);
    font-size: 1.1rem;
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}