/*
  TSOLR Luxury Design System
  Pure CSS - No frameworks
*/

/* ========================================
   CSS Variables (Color System)
   ======================================== */
   :root {
    /* Core canvas */
    --background: hsl(0, 0%, 4%);
    /* #0B0B0B */
    --foreground: hsl(0, 0%, 93%);
    /* #EDEDED */

    --card: hsl(0, 0%, 7%);
    /* #121212 */
    --card-foreground: hsl(0, 0%, 93%);

    --popover: hsl(0, 0%, 7%);
    --popover-foreground: hsl(0, 0%, 93%);

    /* Light editorial surface */
    --paper: hsl(40, 33%, 95%);
    /* warm off-white */
    --paper-foreground: hsl(0, 0%, 8%);
    --paper-muted-foreground: hsl(0, 0%, 38%);
    --paper-border: hsl(0, 0%, 85%);

    /* Brand + accents */
    --primary: hsl(42, 46%, 57%);
    /* Soft Gold #C6A75E */
    --primary-foreground: hsl(0, 0%, 4%);

    --secondary: hsl(0, 0%, 10%);
    --secondary-foreground: hsl(0, 0%, 93%);

    --muted: hsl(0, 0%, 9%);
    --muted-foreground: hsl(0, 0%, 71%);
    /* #B5B5B5 */

    --accent: hsl(0, 0%, 10%);
    --accent-foreground: hsl(0, 0%, 93%);

    --destructive: hsl(0, 72%, 52%);
    --destructive-foreground: hsl(0, 0%, 98%);

    --border: hsl(0, 0%, 16%);
    --input: hsl(0, 0%, 16%);
    --ring: hsl(42, 46%, 57%);

    --radius: 0.9rem;

    /* Signature styling tokens */
    --shadow-luxe: 0 24px 90px -40px hsl(0 0% 93% / 0.22), 0 14px 44px -26px hsl(42 46% 57% / 0.18);
    --hairline: 1px solid hsl(0, 0%, 16%);
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: hsla(42, 46%, 57%, 0.22);
}

/* ========================================
   Utility Classes
   ======================================== */
.section-wrap {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1225px;
    padding-left: 24px;
    padding-right: 24px;
}

.section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
}

@media (min-width: 768px) {
    .section-pad {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.hairline {
    border-top: var(--hairline);
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: box-shadow 200ms, transform 200ms, color 200ms, background-color 200ms, border-color 200ms;
    padding: 10px 16px;
    height: 40px;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--ring), 0 0 0 4px var(--background);
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn-luxury {
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--foreground);
    box-shadow: none;
}

.btn-luxury:hover {
    border-color: hsla(42, 46%, 57%, 0.6);
    box-shadow: var(--shadow-luxe);
}

.btn-luxury:active {
    transform: translateY(1px);
}

.btn-luxury-outline {
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--foreground);
}

.btn-luxury-outline:hover {
    border-color: hsla(42, 46%, 57%, 0.6);
    box-shadow: var(--shadow-luxe);
}

.btn-luxury-outline:active {
    transform: translateY(1px);
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid var(--border);
    background-color: var(--background);
    padding: 12px 24px;
    font-size: 14px;
    letter-spacing: 0.2em;
    transition: all 200ms;
}

.btn-brochure:hover {
    border-color: hsla(42, 46%, 57%, 0.6);
    color: var(--foreground);
}
.career-section {
    background: #f3f0ea; /* soft ivory tone */
    color: #1d1d1d;
}

.career-header {
    text-align: center;
    margin-bottom: 60px;
}

.career-label {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #6b6256;
    margin-bottom: 20px;
}

.career-title {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 48px;
    font-weight: 100;
    color: #1d1d1d;
    line-height: 1.2;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.career-card {
    background: #ffffff;
    border: 1px solid #e4dfd7;
    border-radius: 16px;
    padding: 40px;
}

.career-section .highlight-title {
    color: #1d1d1d;
    font-weight: 600;
}

.career-section .highlight-description {
    color: #5b5447;
}

.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 20px;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 16px;
    color: #1f1f1f;
    line-height: 1.6;
}

.career-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #b89454; /* luxury gold tone */
    border-radius: 50%;
}
@media (max-width: 1024px) {
    .career-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .career-grid {
        grid-template-columns: 1fr;
    }

    .career-title {
        font-size: 32px;
    }
}
/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(11, 11, 11, 0.75);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px circle at 50% 15%, hsla(42, 46%, 57%, 0.14), transparent 55%),
        radial-gradient(700px circle at 50% 100%, hsla(0, 0%, 93%, 0.08), transparent 55%);
}


.hero-section {
    position: relative;
}

.hero-logo-wrapper {
    position: absolute;
    top: 10px;
    left: 40px;
    z-index: 10;
}

.hero-logo {
    height: 20px;
    width: auto;
        bottom: 80px;

}

.hero-content {
    position: relative;
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .hero-logo-wrapper {
        
        left: 20px;
        top: 20px;
    }

    .hero-logo {
        height: 45px;
        
    }

    .hero-content {
        padding-top: 120px;
    }
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

.hero-left {
    padding-top: 8px;
}

@media (min-width: 768px) {
    .hero-left {
        padding-top: 30px;
    }
}

.hero-logo {
    margin-bottom: 24px;
    height: 140px;
    width: 240px;
    object-fit: cover;
    margin-left: 40px;
    
}

.hero-label {
    font-size: 12px;
    letter-spacing: 0.36em;
    color: var(--muted-foreground);
    text-transform: uppercase;
}

.hero-title {
    margin-top: 20px;
    font-size: 36px;
    line-height: 1.08;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 60px;
        font-weight: 100;
        line-height: 1.05;
        font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;

    }
}

.hero-description {
    margin-top: 20px;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.625;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 20px;
        font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;

    }
}

.hero-tags {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tag {
    border-radius: 9999px;
    border: 1px solid var(--border);
    background-color: hsla(0, 0%, 7%, 0.7);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
}

.hero-deadline {
    margin-top: 40px;
    border-radius: 8px;
    border: 1px solid hsla(42, 46%, 57%, 0.3);
    background-color: hsla(0, 0%, 7%, 0.6);
    backdrop-filter: blur(8px);
    padding: 24px;
}

.deadline-label {
    font-size: 12px;
    letter-spacing: 0.28em;
    color: var(--primary);
    text-transform: uppercase;
}

.deadline-title {
    margin-top: 12px;
    font-size: 24px;
    line-height: 1.2;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;


}

@media (min-width: 768px) {
    .deadline-title {
        letter-spacing: normal;
        font-weight: 100;
        font-size: 24px;
        font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
        ;
    }
}

.deadline-text {
    margin-top: 12px;
    line-height: 1.625;
    color: var(--muted-foreground);
}

.deadline-notice {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.arrow-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-right {
    padding-top: 0;
}

@media (min-width: 768px) {
    .hero-right {
        padding-top: 30px;
    }
}

/* ========================================
   Lead Form
   ======================================== */
.lead-form-container {
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: hsla(0, 0%, 7%, 0.75);
    backdrop-filter: blur(8px);
    padding: 14px;
    box-shadow: var(--shadow-luxe);
}

.form-title {
    font-size: 20px;
    line-height: 1.2;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 24px;
    }
}

.form-description {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.425;
    color: var(--muted-foreground);
}

.lead-form {
    margin-top: 20px;
    /* display: grid; */
    /* gap: 12px; */
    padding: 30px;
    border-radius: 8px;
    background-color: #121212;
    position: relative;
}

.form-group {
    display: grid;
    /* gap: 6px; */
}

.phone-row {
    display: grid !important;
    grid-template-columns: 106px minmax(0, 1fr) !important;
    align-items: center;
    gap: 10px;
}

.phone-code-select {
    padding-left: 9px;
    padding-right: 26px;
    font-size: 13px;
    letter-spacing: 0.01em;
    font-variant-numeric: tabular-nums;
}

.phone-number-input {
    flex: 1 1 auto;
    min-width: 0;
}

.form-label {
    font-size: 14px;
    color: var(--muted-foreground);
}

.form-input,
.form-select {
    display: flex;
    /* height: 40px; */
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--input);
    background-color: var(--background);
    padding: 11px 12px;
    font-size: 14px;
    color: var(--foreground);
    transition: all 200ms;
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--ring);
}

.form-input:disabled,
.form-select:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B5B5B5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.phone-row > .phone-code-select {
    width: 106px !important;
    min-width: 106px !important;
    max-width: 106px !important;
}

.phone-row > .phone-number-input {
    width: 100% !important;
    min-width: 0;
}

@media (max-width: 420px) {
    .phone-row {
        grid-template-columns: 94px minmax(0, 1fr) !important;
        gap: 8px;
    }

    .phone-row > .phone-code-select {
        width: 94px !important;
        min-width: 94px !important;
        max-width: 94px !important;
        font-size: 12px;
        padding-left: 8px;
        padding-right: 24px;
    }
}

.phone-code-select option {
    color: #111;
    background: #fff;
}

.spam-trap {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.spam-trap-wrap {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-error {
    font-size: 14px;
    color: var(--destructive);
    min-height: 20px;
}

.btn-luxury {
    margin-top: 4px;
    width: 100%;
    height: 44px;
    /* letter-spacing: 0.22em; */
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 12px;


}

.form-notice {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.625;
    color: var(--muted-foreground);
}

.form-response-time {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ========================================
   Welcome Section
   ======================================== */
.welcome-section {
    background-color: var(--paper);
    color: var(--paper-foreground);
}

.welcome-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .welcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.welcome-image-container {
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--paper);
    box-shadow: var(--shadow-luxe);
}

.welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-content {
    /* Order for mobile */
}

.welcome-title {
    margin-top: 16px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.08;
}

@media (min-width: 768px) {
    .welcome-title {
        font-size: 48px;
    }
}

.welcome-text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.625;
    color: var(--paper-muted-foreground);
}

@media (min-width: 768px) {
    .welcome-text {
        font-size: 20px;
    }
}

/* Light section overrides for Goa page only */
.goa-campus-page .welcome-section .stat-card,
.goa-campus-page .welcome-section .specializations-card {
    background-color: var(--paper);
    border-color: var(--paper-border);
}

.goa-campus-page .welcome-section .stat-label,
.goa-campus-page .welcome-section .stat-note,
.goa-campus-page .welcome-section .bachelors-description,
.goa-campus-page .welcome-section .specializations-list {
    color: var(--paper-muted-foreground);
}

.goa-campus-page .welcome-section .stat-value,
.goa-campus-page .welcome-section .stat-value-small,
.goa-campus-page .welcome-section .specializations-title {
    color: var(--paper-foreground);
}

.goa-campus-page .insights-list-wrap {
    margin-top: 24px;
}

.goa-campus-page .insights-title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--paper-foreground);
    margin-bottom: 12px;
}

.goa-campus-page .insights-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--paper-muted-foreground);
    list-style: disc;
}

.goa-campus-page {
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.goa-campus-page p,
.goa-campus-page li,
.goa-campus-page span,
.goa-campus-page label,
.goa-campus-page input,
.goa-campus-page select,
.goa-campus-page textarea,
.goa-campus-page .hero-tag,
.goa-campus-page .deadline-label,
.goa-campus-page .section-label,
.goa-campus-page .section-label-light,
.goa-campus-page .stat-label,
.goa-campus-page .stat-value,
.goa-campus-page .stat-value-small,
.goa-campus-page .form-description,
.goa-campus-page .form-label,
.goa-campus-page .form-notice {
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.goa-campus-page .welcome-section .apply-cta-buttons {
    margin-top: 24px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.goa-campus-page .welcome-section .apply-cta-buttons .btn {
    width: auto;
    min-width: 180px;
    padding-left: 22px;
    padding-right: 22px;
    letter-spacing: 0.16em;
}

.goa-campus-page .welcome-section .btn-brochure {
    color: var(--foreground);
}

@media (min-width: 900px) {
    .goa-campus-page .welcome-section .apply-cta-buttons {
        flex-wrap: nowrap;
    }
}

.goa-campus-page .goa-why {
    position: relative;
    background:
        radial-gradient(700px circle at 20% 0%, hsla(42, 46%, 57%, 0.12), transparent 55%),
        radial-gradient(640px circle at 80% 100%, hsla(0, 0%, 8%, 0.08), transparent 55%),
        var(--paper);
}

.goa-campus-page .goa-why .goa-why-layout {
    display: grid;
    gap: 32px;
    align-items: start;
}

@media (min-width: 960px) {
    .goa-campus-page .goa-why .goa-why-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 40px;
    }
}

.goa-campus-page .goa-why .goa-why-intro {
    max-width: 640px;
}

.goa-campus-page .goa-why .section-title-dark {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.goa-campus-page .goa-why .section-title-dark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.goa-campus-page .goa-why .section-subtitle {
    max-width: 60ch;
    margin-top: 14px;
    line-height: 1.75;
    font-size: 16px;
}

.goa-campus-page .goa-why .section-subtitle + .section-subtitle {
    margin-top: 10px;
}

.goa-campus-page .goa-why .goa-why-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.goa-campus-page .goa-why .goa-why-badge {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #e6dccb;
    background: #fff9ee;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b6256;
}

.goa-campus-page .goa-why .goa-why-cards {
    display: grid;
    gap: 16px;
}

@media (min-width: 700px) {
    .goa-campus-page .goa-why .goa-why-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.goa-campus-page .goa-why .goa-why-card {
    background-color: #fffdf6;
    border: 1px solid #e6dccb;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 20px 40px -30px rgba(17, 17, 17, 0.22);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.goa-campus-page .goa-why .goa-why-card:hover {
    transform: translateY(-4px);
    border-color: #d6c3a0;
    box-shadow: 0 26px 50px -28px rgba(17, 17, 17, 0.28);
}

.goa-campus-page .goa-why .goa-why-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.goa-campus-page .goa-why .goa-why-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #e0d2b8;
    background: #fff4df;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #8d6a34;
    font-weight: 600;
}

.goa-campus-page .goa-why .goa-why-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1d;
}

.goa-campus-page .goa-why .goa-why-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #5e564a;
}

.goa-campus-page .goa-faq .career-header {
    margin-bottom: 36px;
}

.goa-campus-page .goa-faq .career-title {
    font-size: 36px;
    font-weight: 400;
}

.goa-campus-page .goa-faq .career-label {
    letter-spacing: 0.22em;
}

.goa-campus-page .goa-faq .career-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.goa-campus-page .goa-faq .career-card {
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 18px 38px -28px rgba(17, 17, 17, 0.2);
}

.goa-campus-page .goa-faq .highlight-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1d;
}

.goa-campus-page .goa-faq .highlight-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5b5447;
}

@media (max-width: 900px) {
    .goa-campus-page .goa-faq .career-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Bachelors Section
   ======================================== */
.bachelors-section {
    background-color: var(--background);
}

.bachelors-grid {
    display: grid;
    gap: 40px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .bachelors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bachelors-content {
    /* Content styling */
}

.section-label {
    font-size: 12px;
    letter-spacing: 0.28em;
    color: var(--muted-foreground);
    text-transform: uppercase;
}

.section-title {
    margin-top: 16px;
    font-size: 30px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
        font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;

    }
}

.bachelors-description {
    margin-top: 16px;
    display: grid;
    gap: 16px;
    font-size: 16px;
    line-height: 1.625;
    color: var(--muted-foreground);
}

.bachelors-stats {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .bachelors-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--card);
    padding: 24px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--muted-foreground);
    text-transform: uppercase;
}

.stat-value {
    margin-top: 8px;
    font-size: 14px;
}

.stat-value-small {
    margin-top: 8px;
    font-size: 14px;
}

.stat-note {
    margin-top: 4px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.stat-list {
    margin-top: 12px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.625;
}

.stat-list li {
    display: flex;
    gap: 12px;
}

.bullet {
    display: block;
    margin-top: 8px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    flex-shrink: 0;
}

.specializations-card {
    margin-top: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--card);
    padding: 18px;
}

@media (min-width: 768px) {
    .specializations-card {
        padding: 18px;
    }
}

.specializations-title {
    font-size: 24px;
    line-height: 1.2;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;

}

.specializations-list {
    margin-top: 20px;
    list-style: none;
    display: grid;
    gap: 12px;
    font-size: 14px;

    line-height: 1.625;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .specializations-list {
        grid-template-columns: repeat(3, 1fr);

    }
}

.specializations-list li {
    display: flex;
    gap: 12px;
}

.brochure-link {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.brochure-link .btn-luxury {
    width: auto;
}

.bachelors-image-container {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--card);
    box-shadow: var(--shadow-luxe);
}

.bachelors-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Highlights Section
   ======================================== */
.highlights-section {
    background-color: var(--paper);
    color: var(--paper-foreground);
}

.section-header {
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
    text-align: center;
}

.section-label-light {
    font-size: 12px;
    letter-spacing: 0.28em;
    color: var(--paper-muted-foreground);
    text-transform: uppercase;
}

.section-title-dark {
    margin-top: 16px;
    font-size: 30px;
    line-height: 1.2;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;

}

@media (min-width: 768px) {
    .section-title-dark {
        font-size: 36px;
        font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
        font-weight: 200;
    }
}

.highlights-grid {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-card {
    border-radius: 8px;
    border: 1px solid var(--paper-border);
    background-color: hsla(40, 33%, 95%, 0.6);
    padding: 24px;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    height: 20px;
    width: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-title {
    font-size: 18px;
    line-height: 1.2;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: 200;
}

.highlight-description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.625;
    color: var(--paper-muted-foreground);
}

.highlight-list {
    margin-top: 12px;
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    line-height: 1.625;
    color: var(--paper-muted-foreground);
}

/* ========================================
   Campuses Section
   ======================================== */
.campuses-section {
    background-color: var(--background);
    color: var(--foreground);
}

.section-header-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
    text-align: center;
}

.campuses-grid {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

@media (min-width: 1024px) {
    .campuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.campus-card {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--card);
    color: var(--card-foreground);
    box-shadow: var(--shadow-luxe);
}

.campus-image-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    background-color: var(--muted);
}

.campus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-content {
    padding: 24px;
}

.campus-title {
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
    color: var(--primary);
}

@media (min-width: 768px) {
    .campus-title {
        font-size: 30px;
    }
}

.campus-details {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.625;
    color: var(--muted-foreground);
}

.campus-button {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

/* ========================================
   Application Process Section
   ======================================== */
.application-section {
    background-color: var(--paper);
    color: var(--paper-foreground);
}

.section-subtitle {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.625;
    color: var(--paper-muted-foreground);
}

.process-grid {
    margin-top: 48px;
    display: grid;
    gap: 17px;
    list-style: none;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.process-card {
    border-radius: 8px;
    border: 1px solid var(--paper-border);
    background-color: var(--paper);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-luxe);
}

.process-number {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--primary);
}

@media (min-width: 768px) {
    .process-number {
        font-size: 48px;
    }
}

.process-title {
    margin-top: 24px;
    font-size: 24px;
    line-height: 1.2;
}

.process-description {
    margin: 16px auto 0;
    max-width: 26ch;
    font-size: 14px;
    line-height: 1.625;
    color: var(--paper-muted-foreground);
}

/* ========================================
   Apply CTA Section
   ======================================== */
.apply-cta-section {
    background-color: var(--background);
    color: var(--foreground);
}

.apply-cta-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: hsla(0, 0%, 7%, 0.4);
    backdrop-filter: blur(8px);
    padding: 40px;
    box-shadow: var(--shadow-luxe);
}

@media (min-width: 768px) {
    .apply-cta-container {
        padding: 45px;
    }
}

.apply-cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px circle at 50% 0%, hsla(42, 46%, 57%, 0.16), transparent 55%),
        radial-gradient(700px circle at 20% 120%, hsla(0, 0%, 93%, 0.10), transparent 60%);
    pointer-events: none;
}

.apply-cta-content {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
    text-align: center;
}

.apply-cta-title {
    font-size: 36px;
    line-height: 1.06;
}

@media (min-width: 768px) {
    .apply-cta-title {
        font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
        font-size: 60px;
        line-height: 1.02;
    }
}

.apply-cta-description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.625;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .apply-cta-description {
        font-size: 20px;
    }
}

.apply-cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    
    gap: 9px;
}

@media (min-width: 640px) {
    .apply-cta-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}

.apply-cta-buttons .btn {
    height: 44px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    width: 100%;
}

/* ========================================
   CTA Modal
   ======================================== */
body.modal-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 14px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    position: relative;
    width: min(640px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border-radius: 12px;
    border: 1px solid hsla(42, 46%, 57%, 0.4);
    background:
        linear-gradient(180deg, hsla(0, 0%, 9%, 0.98), hsla(0, 0%, 6%, 0.98)),
        radial-gradient(800px circle at 50% -10%, hsla(42, 46%, 57%, 0.14), transparent 55%);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
    padding: 18px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid hsla(0, 0%, 100%, 0.18);
    background: hsla(0, 0%, 100%, 0.04);
    color: var(--foreground);
    font-size: 22px;
    line-height: 1;
}

.modal-close:hover {
    border-color: hsla(42, 46%, 57%, 0.55);
    background: hsla(42, 46%, 57%, 0.12);
}

.modal-card .form-title {
    margin-right: 44px;
}

.modal-card .form-description {
    margin-top: 6px;
}

.modal-lead-form {
    margin-top: 12px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid hsla(0, 0%, 100%, 0.06);
    background: hsla(0, 0%, 7%, 0.9);
}

.modal-lead-form .form-status {
    min-height: 20px;
    margin-top: 6px;
}

/* ========================================
   Toast Notification
   ======================================== */
.toast {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100;
    min-width: 320px;
    max-width: 420px;
    border-radius: 8px;
    border: 1px solid hsla(0, 0%, 16%, 0.5);
    background-color: var(--background);
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 300ms, transform 300ms;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast.success {
    border-color: rgba(47, 125, 50, 0.45);
    background-color: rgba(232, 247, 232, 0.96);
}

.toast.error {
    border-color: rgba(179, 38, 30, 0.45);
    background-color: rgba(252, 235, 233, 0.96);
}

.toast-content {
    display: grid;
    gap: 4px;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--foreground);
}

.toast-description {
    font-size: 14px;
    color: var(--muted-foreground);
}

.toast.success .toast-title,
.toast.success .toast-description {
    color: #1f5f23;
}

.toast.error .toast-title,
.toast.error .toast-description {
    color: #7a231d;
}

/* ========================================
   Responsive Layout (Tablet + Mobile)
   ======================================== */
@media (max-width: 1024px) {
    .section-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-pad {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-deadline {
        margin-top: 28px;
        padding: 20px;
    }

    .lead-form {
        padding: 22px;
    }

    .apply-cta-container {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .section-wrap {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section-pad {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .hero-logo-wrapper {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 8px;
        width: fit-content;
    }

    .hero-content {
        padding-top: 24px !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-left,
    .hero-right {
        padding-top: 0 !important;
    }

    .hero-logo {
        width: 130px;
        height: auto;
        margin: 0 auto 6px;
    }

    .hero-title {
        margin-top: 12px;
        font-size: 32px;
        line-height: 1.14;
    }

    .hero-description {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-tags {
        margin-top: 20px;
        gap: 6px;
    }

    .hero-tag {
        font-size: 10px;
        padding: 5px 10px;
    }

    .hero-deadline {
        margin-top: 20px;
        padding: 16px;
    }

    .deadline-title {
        font-size: 20px;
        line-height: 1.25;
    }

    .lead-form-container {
        padding: 12px;
    }

    .form-title {
        font-size: 20px;
    }

    .form-description {
        font-size: 13px;
    }

    .lead-form {
        margin-top: 14px;
        padding: 14px;
    }

    .form-group {
        gap: 5px;
    }

    .form-input,
    .form-select {
        min-height: 44px;
        padding: 10px 11px;
        font-size: 15px;
    }

    .phone-row {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        gap: 8px;
    }

    .phone-row > .phone-code-select {
        width: 96px !important;
        min-width: 96px !important;
        max-width: 96px !important;
        padding-left: 8px;
        padding-right: 22px;
        font-size: 12px;
    }

    .highlights-grid {
        margin-top: 24px;
        gap: 14px;
    }

    .highlight-card {
        padding: 16px;
    }

    .section-title,
    .section-title-dark {
        font-size: 28px;
        line-height: 1.2;
    }

    .bachelors-grid {
        gap: 20px;
    }

    .bachelors-description {
        gap: 10px;
    }

    .bachelors-stats {
        margin-top: 18px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 16px;
    }

    .specializations-card {
        margin-top: 18px;
        padding: 16px;
    }

    .specializations-list {
        margin-top: 14px;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .campuses-grid {
        margin-top: 24px;
        gap: 14px;
    }

    .campus-content {
        padding: 16px;
    }

    .campus-title {
        font-size: 24px;
    }

    .process-grid {
        margin-top: 24px;
        gap: 12px;
    }

    .process-card {
        padding: 18px;
    }

    .process-number {
        font-size: 28px;
    }

    .process-title {
        margin-top: 12px;
        font-size: 20px;
    }

    .process-description {
        margin-top: 10px;
    }

    .apply-cta-container {
        padding: 18px;
    }

    .apply-cta-title {
        font-size: 30px;
        line-height: 1.14;
    }

    .apply-cta-description {
        font-size: 15px;
        margin-top: 10px;
    }

    .apply-cta-buttons {
        margin-top: 20px;
        gap: 10px;
    }

    .apply-cta-buttons .btn {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        letter-spacing: 0.12em;
    }

    .modal-overlay {
        padding: 12px;
    }

    .modal-card {
        max-height: calc(100vh - 24px);
        padding: 14px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
    }

    .modal-lead-form {
        padding: 12px;
    }

    .toast {
        left: 12px;
        right: 12px;
        top: 12px;
        min-width: auto;
        max-width: none;
        width: auto;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title,
    .section-title-dark {
        font-size: 24px;
    }

    .deadline-label,
    .section-label,
    .section-label-light {
        letter-spacing: 0.18em;
    }

    .campus-title {
        font-size: 22px;
    }

    .apply-cta-title {
        font-size: 26px;
    }
}

@media (min-width: 640px) {
    .apply-cta-buttons .btn {
        width: auto;
        min-width: 220px;
    }
}

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 639px) {
    .section-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ========================================
   Accessibility
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible styles */
*:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* ========================================
   WhatsApp Floating Widget (Isolated)
   ======================================== */
#tsolr-wa-widget {
    position: fixed;
    right: calc(12px + env(safe-area-inset-right, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: 1px solid #1fa855;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

#tsolr-wa-widget:hover {
    transform: translateY(-1px);
    background-color: #2ae073;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

#tsolr-wa-widget:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #25d366, 0 0 0 4px rgba(11, 11, 11, 0.85);
}

#tsolr-wa-widget .tsolr-wa-widget-icon {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

@media (max-width: 480px) {
    #tsolr-wa-widget {
        right: calc(8px + env(safe-area-inset-right, 0px));
        bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        width: 42px;
        height: 42px;
    }

    #tsolr-wa-widget .tsolr-wa-widget-icon {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

    .hero-background,
    .hero-gradient {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
