:root {
    --primary: #FF8533;
    --primary-hover: #FF6B00;
    --dark: #0F172A;
    --text-muted: #64748B;
    --bg-light: #FFF9F6;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --radius-lg: 24px;
    --radius-md: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-light); color: var(--dark); line-height: 1.6; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar { background: var(--white); padding: 14px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo-section { display: flex; align-items: center; gap: 12px; }
.main-logo { height: 42px; }
.logo-title { display: block; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.5px; }
.logo-subtitle { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; }

/* Hero */
.hero { padding: 80px 0; min-height: 500px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-text h1 span { color: var(--primary); }
.hero-text p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; max-width: 520px; }

.image-card img { 
    width: 100%; max-width: 380px; border-radius: var(--radius-lg); 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); display: block; margin: 0 auto;
}

/* Buttons */
.btn { border: none; font-weight: 700; cursor: pointer; transition: all 0.3s ease; border-radius: var(--radius-md); font-family: inherit; }
.btn-nav { background: var(--primary); color: var(--white); padding: 10px 22px; font-size: 0.9rem; }
.btn-hero { background: var(--primary); color: var(--white); padding: 18px 36px; font-size: 1.05rem; box-shadow: 0 10px 20px rgba(255, 133, 51, 0.25); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255, 133, 51, 0.35); background: var(--primary-hover); }

/* Premium Modal */
.modal-overlay { 
    position: fixed; inset: 0; background: rgba(15, 23, 42, 0.7); 
    backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px;
}
.modal-content { 
    background: var(--white); width: 100%; max-width: 480px; padding: 40px; 
    border-radius: 32px; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.25); 
}
.modal-close { position: absolute; top: 20px; right: 20px; border: none; background: #F1F5F9; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 20px; }

.modal-header h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.modal-header p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 30px; }

/* Premium Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.input-group { margin-bottom: 16px; }
.input-group label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); padding-left: 4px; }
.input-group input, .input-group select { 
    width: 100%; padding: 14px 16px; border: 2px solid #F1F5F9; border-radius: 14px; 
    background: #F8FAFC; font-size: 0.95rem; transition: 0.2s; outline: none;
}
.input-group input:focus { border-color: var(--primary); background: var(--white); }

.phone-wrapper { display: flex; gap: 8px; }
.flag-code { background: #F1F5F9; border: 2px solid #F1F5F9; border-radius: 14px; padding: 0 12px; display: flex; align-items: center; font-weight: 700; font-size: 0.85rem; }

.consent-container { display: flex; gap: 12px; align-items: flex-start; margin: 20px 0; cursor: pointer; }
.consent-container label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.consent-container input { width: 18px; height: 18px; accent-color: var(--primary); }

.btn-submit { width: 100%; padding: 18px; font-size: 1.1rem; background: var(--primary); color: var(--white); }

/* Responsive */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.4rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .hero-text p { margin-inline: auto; }
}





.uni-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-header {
    margin-bottom: 40px;
    text-align: left;
}

.title-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0F172A;
}

.title-main span {
    color: var(--primary); /* Uses the orange from before */
}

.subtitle {
    color: #64748B;
    font-size: 0.9rem;
    margin-top: 5px;
}

.uni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.uni-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.uni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.card-banner {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.uni-card:hover .card-banner img {
    transform: scale(1.1);
}

.location-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 24px;
}

.spec-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spec-list {
    font-size: 0.9rem;
    color: #475569;
    min-height: 40px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.perks {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.perk-item {
    font-size: 0.8rem;
    color: #64748B;
    background: #F8FAFC;
    padding: 4px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.accreditation {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94A3B8;
    margin-bottom: 20px;
}

.price-box {
    border-top: 1px solid #F1F5F9;
    padding-top: 15px;
    margin-bottom: 20px;
}

.actual-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #10B981; /* Premium Green */
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #94A3B8;
    margin-left: 8px;
}

.btn-card {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-card:hover {
    background: #E6762A;
    box-shadow: 0 8px 20px rgba(255, 133, 51, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .uni-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .uni-grid { grid-template-columns: 1fr; }
}




.bg-light-gray {
    background-color: #fcfcfc; /* Very subtle difference to separate sections */
    padding-top: 0px; /* Reduces space between the two grid sections */
}











/* --- Footer Styling --- */
.footer {
    background-color: #020617; /* Very dark navy/black */
    color: #94a3b8; /* Muted gray text */
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid #1e293b;
}

.footer-content {
    max-width: 900px; /* Keeps the text readable and centered */
    margin: 0 auto;
}

.footer-brand {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.disclaimer, .affiliate-note {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-content strong {
    color: #f8fafc; /* Brighter white for bold terms */
}

.footer-contact {
    margin: 30px 0 15px;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-links {
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links .divider {
    margin: 0 12px;
    color: #334155;
}

.copyright {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 20px;
    border-top: 1px solid #1e293b;
    padding-top: 25px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .footer {
        padding: 40px 20px;
    }
    .footer-links .divider {
        display: none;
    }
    .footer-links a {
        display: block;
        margin-bottom: 10px;
    }
}