/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    /* Navy & Gold Color Palette */
    --navy-deep:#b22222;
    --navy-medium: #b22222;
    --navy-light: hsl(220, 40%, 92%);
    --gold: #000080;
    --gold-dark: #000080;
    --amber: #000080;
    
    /* Neutrals */
    --white: hsl(0, 0%, 100%);
    --gray-50: hsl(220, 20%, 98%);
    --gray-100: hsl(220, 20%, 96%);
    --gray-200: hsl(220, 20%, 88%);
    --gray-600: hsl(220, 20%, 45%);
    --gray-900: hsl(220, 40%, 15%);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    /* --font-sans: 'Inter', sans-serif;
    --font-serif: 'Montserrat', sans-serif; */
    --font-sans: 'Inter', sans-serif;

    /* system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(29, 48, 72, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(29, 48, 72, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(29, 48, 72, 0.15);
    --shadow-xl: 0 20px 40px -10px rgba(29, 48, 72, 0.2);
    --shadow-gold: 0 8px 20px -5px rgba(245, 197, 66, 0.3);
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.95);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside dropdown content */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* ===========================
   Utility Classes
   =========================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.text-gold {
    color: var(--gray-900);
}

.text-navy {
    color: var(--navy-deep);
}

.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }

    /* #gt_float_wrapper {
        bottom: 67px;
    } */
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--navy-deep);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(245, 197, 66, 0.4);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background-color: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(245, 197, 66, 0.4);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-navy {
    background-color: transparent;
    border: 2px solid var(--navy-deep);
    color: var(--navy-deep);
}

.btn-outline-navy:hover {
    background-color: var(--navy-deep);
    color: var(--white);
}

@media (max-width: 1024px) {
    .btn-primary{
        display: none;
    }
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .logo-subtitle {
    color: var(--gray-900);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--gray-900);
}

.navbar.scrolled .logo-title {
    color: var(--gray-900);
}

.logo-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-weight: 600;
    color: var(--gray-900);
    position: relative;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--navy-deep);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    color: var(--gray-900);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 2000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-menu-close {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-900);
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--navy-deep);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: inherit;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(29, 48, 72, 0.95) 0%, rgba(29, 48, 72, 0.85) 50%, rgba(54, 88, 134, 0.7) 100%); */
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.85) 0%, rgba(178, 34, 34, -0.4) 100%);

    /* background: linear-gradient(135deg, rgba(29, 48, 72, 0.95) 0%, rgba(29, 48, 72, 0.85) 50%, rgba(54, 88, 134, 0.7) 100%);} */
}
.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
    max-width: 56rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--gold);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 197, 66, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--white);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===========================
   Section Common Styles
   =========================== */
.section-label {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-label-light {
    color: var(--gold);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-title-light {
    color: var(--gray-900);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.section-description-light {
    color: var(--gray-900);
}

.section-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-header-light {
    color: var(--white);
}

/* ===========================
   Welcome Section
   =========================== */
.welcome {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

@media (min-width: 1024px) {
    .welcome {
        padding: 8rem 0;
    }
}

.two-column {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-column {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.column {
    width: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(29, 48, 72, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-size: 1.5rem;
    transition: all var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: rgba(245, 197, 66, 0.2);
    color: var(--gold);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===========================
   Programs Section
   =========================== */
.programs {
    padding: 5rem 0;
    background-color: var(--white);
}

@media (min-width: 1024px) {
    .programs {
        padding: 8rem 0;
    }
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-card {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(29, 48, 72, 0.2);
    transform: translateY(-4px);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.program-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: rgba(29, 48, 72, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-size: 1.75rem;
    transition: all var(--transition);
}

.program-card:hover .program-icon {
    background-color: var(--navy-light);
    color: var(--gold);
}

.program-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-primary {
    background-color: var(--navy-light);
    color: var(--gold);
}

.badge-gold {
    background-color: var(--navy-light);
    color: var(--gold-dark);
}

.badge-accent {
    background-color: var(--navy-light);
    color: var(--amber);
}

.program-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    transition: color var(--transition);
}

.program-card:hover .program-title {
    color: var(--navy-deep);
}

.program-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.program-link {
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color var(--transition);
    margin-top: auto;
}

.program-card:hover .program-link {
    color: var(--gold);
}

/* ===========================
   Campus Section
   =========================== */
.campus {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

@media (min-width: 1024px) {
    .campus {
        padding: 8rem 0;
    }
}

.campus-tabs {
    width: 100%;
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .tab-buttons {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    color: var(--gray-900);
    font-weight: 500;
    transition: all var(--transition);
}

.tab-btn:hover {
    border-color: var(--navy-deep);
}

.tab-btn.active {
    background-color: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--white);
}

.tab-btn i {
    font-size: 1.25rem;
}

.tab-btn span {
    display: none;
}

@media (min-width: 640px) {
    .tab-btn span {
        display: inline;
    }
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

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

.campus-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .campus-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.campus-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.campus-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.campus-info {
    width: 100%;
}

.campus-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .campus-title {
        font-size: 2.5rem;
    }
}

.campus-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.campus-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.campus-stat {
    text-align: center;
}

.campus-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

@media (min-width: 640px) {
    .campus-stat-value {
        font-size: 2rem;
    }
}

.campus-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===========================
   Admissions Section
   =========================== */
.admissions {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

@media (min-width: 1024px) {
    .admissions {
        padding: 8rem 0;
    }
}

.dates-card {
    background-color: var(--navy-deep);
    color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.dates-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.date-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.date-label {
    font-weight: 500;
}

.date-value {
    font-weight: 700;
}

.admissions-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .admissions-buttons {
        flex-direction: row;
    }
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--navy-deep);
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background-color: rgba(29, 48, 72, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-size: 2rem;
    transition: all var(--transition);
}

.step-card:hover .step-icon {
    color: var(--gold);
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.step-card:hover .step-title {
    color: var(--navy-deep);
}

.step-text {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    padding: 5rem 0;
    background-color: #FFF;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 8rem 0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%)#fff;
    backdrop-filter: blur(10px);
    border: 2px solid var(--gray-200);
    /* box-shadow: 0 2rem 32px 3rem rgba(132, 139, 200, 0.18); */
    border-radius: 1rem;
    padding: 2rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   News Section
   =========================== */
.news {
    padding: 5rem 0;
    background-color: var(--white);
}

@media (min-width: 1024px) {
    .news {
        padding: 8rem 0;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(29, 48, 72, 0.2);
    transform: translateY(-4px);
}

.news-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.news-card:hover .news-title {
    color: var(--navy-deep);
}

.news-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color var(--transition);
    margin-top: auto;
}

.news-card:hover .news-link {
    color: var(--gold);
}

.news-link i {
    transition: transform var(--transition);
}

.news-card:hover .news-link i {
    transform: translateX(4px);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--navy-deep);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--white);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.contact-item i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.newsletter-heading {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--white);
    font-family: inherit;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===========================
   Scrollbar
   =========================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-deep);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--navy-medium);
}