/* ========================================
   ROOT & THEME VARIABLES
   ======================================== */
:root {
    --background: 218 54% 13% !important;
    --foreground: 0 0% 100% !important;
    --card: 218 50% 17% !important;
    --card-foreground: 0 0% 100% !important;
    --popover: 218 50% 17% !important;
    --popover-foreground: 0 0% 100% !important;
    --primary: 43 96% 56% !important;
    --primary-foreground: 218 54% 13% !important;
    --secondary: 218 40% 22% !important;
    --secondary-foreground: 0 0% 100% !important;
    --muted: 218 30% 25% !important;
    --muted-foreground: 215 20% 75% !important;
    --accent: 43 96% 56% !important;
    --accent-foreground: 218 54% 13% !important;
    --destructive: 0 84% 60% !important;
    --destructive-foreground: 0 0% 100% !important;
    --border: 218 35% 28% !important;
    --input: 218 40% 20% !important;
    --ring: 43 96% 56% !important;
    --radius: 0.5rem !important;
    --gold: 28 95% 55% !important;
    --gold-soft: 43 96% 70% !important;
    --navy: 218 54% 13% !important;
    --navy-light: 218 50% 17% !important;
    --navy-lighter: 218 40% 22% !important;
}


/* Fix global font size issue */


/* body {
    font-size: 16px !important;
    line-height: 1.6;
} */

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Inter';
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'inter', Georgia, serif;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   NAVBAR / HEADER
   ======================================== */


.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    color: hsl(var(--foreground));
}

.logo-circle {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 2px solid hsl(var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--navy));
    color: hsl(var(--gold));
    font-size: 0.875rem;
    font-weight: 700;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    color: hsla(var(--foreground), 0.8);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: hsl(var(--gold));
}

.btn-primary-small {
    background-color: hsl(var(--gold));
    color: hsl(var(--navy));
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.btn-primary-small:hover {
    background-color: hsl(var(--gold-soft));
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-card .btn-primary,
.price-card .btn-secondary {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: hsl(var(--foreground));
    color: hsl(var(--navy));
}

.btn-primary:hover {
    background-color: hsla(var(--foreground), 0.9);
}

.btn-secondary {
    border: 1px solid hsla(var(--foreground), 0.3);
    color: hsl(var(--foreground));
}

.btn-secondary:hover {
    background-color: hsla(var(--foreground), 0.1);
    border-color: hsl(var(--gold));
    color: hsl(var(--gold));
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* black overlay */
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(hsl(var(--gold) / 0.06) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--gold) / 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid hsla(var(--gold), 0.4);
    background-color: hsla(var(--gold), 0.1);
    color: hsl(var(--gold));
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.text-gold {
    color: hsl(var(--gold));
}

.hero-content > p {
    font-size: 1.125rem;
    color: hsla(var(--foreground), 0.75);
    max-width: 42rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    border: 1px solid white;
    border-radius: 0.5rem;
    padding: 1.25rem;
    background-color: hsla(var(--navy), 0.4);
    backdrop-filter: blur(10px);
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--gold));
}

.stat-label {
    font-size: 0.875rem;
    color: hsla(var(--foreground), 0.7);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   SECTIONS & CONTAINERS
   ======================================== */
.section {
    padding: 4rem 0;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.kicker {
    color: hsl(var(--gold));
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: hsla(var(--foreground), 0.7);
    font-size: 1.125rem;
}

/* ========================================
   CARDS & GRIDS
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.card {
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 2rem;
    background-color: hsl(var(--card));
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    border-color: hsla(var(--gold), 0.5);
    transform: translateY(-0.25rem);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: hsl(var(--gold));
    margin-top: 0;
}

.card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.card p {
    color: hsla(var(--foreground), 0.7);
    line-height: 1.6;
    flex-grow: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.card-hours {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hours {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(var(--gold));
}

.hours-label {
    color: hsla(var(--foreground), 0.6);
    font-weight: 600;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy-section {
    background-color: #f5f5f5;
    color: #222;
}

.philosophy-section .card {
    background-color: white;
    border-color: #ddd;
}

.philosophy-section .card h3 {
    color: hsl(var(--gold));
}

.philosophy-section .kicker {
    color: hsl(var(--gold));
}

.philosophy-bar {
    max-width: 32rem;
    margin: 0 auto;
}

.bar-container {
    height: 0.75rem;
    border-radius: 9999px;
    overflow: hidden;
    display: flex;
    border: 1px solid hsl(var(--border));
}

.bar-fill {
    background-color: hsl(var(--gold));
    height: 100%;
}

.bar-secondary {
    background-color: hsl(var(--navy-lighter));
}

.bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: hsla(var(--foreground), 0.7);
}

/* ========================================
   PATHWAYS SECTION
   ======================================== */
.pathways-section {
    background-color: #f5f5f5;
    color: #222;
}

.pathways-section .section-header {
    color: #222;
}

.pathways-section .section-header .kicker {
    color: hsl(var(--gold));
}

.pathways-section .section-header h2 {
    color: #222;
}

.pathways-section .card {
    background-color: white;
    border-color: #ddd;
    color: #444;
}

.pathways-section .card h4 {
    color: hsl(var(--gold));
}

.tab-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    padding: 0.25rem;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.pathways-section .tab-switcher {
    background-color: white;
    border: 1px solid #ddd;
}

.tab-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
    color: hsla(var(--foreground), 0.7);
}

.tab-btn.active {
    background-color: hsl(var(--gold));
    color: hsl(var(--navy));
}

.track-content {
    display: none;
}

.track-content.active {
    display: block;
}

.track-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.track-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.track-header p {
    color: hsla(var(--foreground), 0.7);
    margin: 0;
}

/* ========================================
   INFRASTRUCTURE SECTION
   ======================================== */
.infra-section {
    background-color: hsl(var(--background));
}

/* ========================================
   GOVERNANCE SECTION
   ======================================== */
.governance-section {
    /* dark background */
}

/* ========================================
   CENTERS SECTION
   ======================================== */
.centers-section {
    background-color: #f5f5f5;
    color: #222;
}

.centers-section .card,
.centers-section .center-card {
    background-color: white;
    border-color: #ddd;
}

.centers-section .section-header {
    color: #222;
}

.centers-section .section-header .kicker {
    color: hsl(var(--gold));
}

.centers-section .section-header h2 {
    color: #222;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.center-card {
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: hsl(var(--card));
    transition: all 0.3s ease;
}

.center-card:hover {
    border-color: hsl(var(--gold));
}

.center-img {
    position: relative;
    height: 18rem;
    overflow: hidden;
}

.center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.center-card:hover .center-img img {
    transform: scale(1.05);
}

.status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
   background: black;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.status.active {
    background-color: hsl(var(--gold));
    color: hsl(var(--navy));
    border-color: hsl(var(--gold));
}

.center-content {
    padding: 1.5rem;
}

.center-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.college {
    font-size: 0.875rem;
    color: hsla(var(--foreground), 0.7);
    margin-bottom: 0.25rem;
}

.location {
    font-size: 0.875rem;
    color: hsl(var(--gold));
    margin-bottom: 1rem;
}

.center-link {
    font-size: 0.875rem;
    font-weight: 600;
    color:black;
    transition: color 0.3s ease;
}

.center-link:hover {
    color: hsl(var(--gold));
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    background-color: #f5f5f5;
    color: #222;
}

.pricing-section .section-header {
    color: #222;
}

.pricing-section .section-header .kicker {
    color: hsl(var(--gold));
}

.pricing-section .section-header h2 {
    color: #222;
}

.pricing-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #222;
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.price-card {
    border: 1px solid #ddd;
    border-radius: 0.75rem;
    padding: 2rem;
    background-color: white;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #444;
}

.price-card.best-value {
    border-color: hsl(var(--gold));
    background-color: hsl(var(--card));
}

.best-value-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: hsl(var(--gold));
    color: hsl(var(--navy));
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.price-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.price-card a {
    margin-top: auto;
    width: 100%;
    display: block;
    text-align: center;
}

.price-hours {
    color: hsla(var(--foreground), 0.6);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.price-amount {
    margin-bottom: 1.5rem;
}

.amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--gold));
}

.per-hr {
    color: hsla(var(--foreground), 0.6);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0px !important;
}

.price-features li {
    font-size: 0.875rem;
    color: hsla(var(--foreground), 0.8);
    display: flex;
    align-items: center;
}

/* ========================================
   OUTCOMES SECTION
   ======================================== */
.outcomes-section {
    background-color: #f5f5f5;
    color: #222;
}

.outcomes-section .card {
    background-color: white;
    border-color: #ddd;
}

.outcomes-section .card h3 {
    color: hsl(var(--gold));
}

.outcomes-section .section-header h2 {
    color: #222;
}

.outcome-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--gold));
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    background-color: hsl(var(--card));
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.375rem;
    min-width: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    background-color: hsla(var(--gold), 0.1);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.875rem;
    color: white;
}

.contact-value {
    font-weight: 600;
    color: white;
}

.contact-form {
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 2rem;
    background-color: hsl(var(--card));
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-form button[type="submit"] {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.form-input {
    width: 100%;
    background-color: hsl(var(--input));
    border: 1px solid hsl(var(--border));
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input::placeholder {
    color: hsla(var(--foreground), 0.5);
}

.form-input:focus {
    outline: none;
    border-color: hsl(var(--gold));
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.form-row .form-input {
    width: 100%;
}

.form-input[type="submit"] {
    background-color: hsl(var(--gold));
    color: hsl(var(--navy));
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-input[type="submit"]:hover {
    background-color: hsl(var(--gold-soft));
}

.form-note {
    font-size: 0.75rem;
    text-align: center;
    color: hsla(var(--foreground), 0.5);
    margin: 0;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5em;
    padding-right: 2.5rem;
}

.price-card a {
    margin-top: auto;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    border-top: 1px solid hsl(var(--border));
    padding: 3rem 0;
    background-color: hsl(var(--navy));
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col .logo {
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.875rem;
    color: hsla(var(--foreground), 0.6);
    max-width: 20rem;
}

.footer-col h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a,
.footer-col li {
    font-size: 0.875rem;
    color: hsla(var(--foreground), 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: hsl(var(--gold));
}

.footer-bottom {
    border-top: 1px solid hsl(var(--border));
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: hsla(var(--foreground), 0.5);
}

#footer-container {
    position: relative;
    z-index: 1;
    clear: both;
}

.contact-section {
    position: relative;
    z-index: 2;
}

#footer-container .sm-footer {
    position: relative;
    min-height: 372px;
    overflow: hidden;
    background-color: #050817;
    background-image: linear-gradient(rgba(5, 8, 23, 0.88), rgba(5, 8, 23, 0.9)), url("assets/images/footer/foooter-bg.webp");
    background-position: center;
    background-size: cover;
    color: #fff;
    font-family: Jost, "Segoe UI", Arial, sans-serif;
}

#footer-container .sm-footer * {
    box-sizing: border-box;
}

#footer-container .sm-footer-inner {
    position: relative;
    width: min(1625px, calc(100% - 48px));
    min-height: 372px;
    margin: 0 auto;
    padding: 72px 24px 0;
}

#footer-container .sm-footer-main {
    display: grid;
    grid-template-columns: 430px 190px 240px 380px;
    column-gap: 76px;
    align-items: start;
    padding: 3px;
}

#footer-container .sm-footer-logo {
    display: inline-block;
    margin-bottom: 4px;
}

#footer-container .sm-footer-logo img {
    display: block;
    width: 220px;
    height: auto;
}

#footer-container .sm-footer-brand p {
    width: 350px;
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

#footer-container .sm-footer h4 {
    margin: 7px 0 38px;
    color: #fff;
    font-family: Jost, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

#footer-container .sm-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer-container .sm-footer-links li {
    margin-bottom: 8px;
}

#footer-container .sm-footer-links a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
}

#footer-container .sm-footer-links a::before {
    content: "\2192";
    margin-right: 8px;
    font-weight: 500;
}

#footer-container .sm-footer-contact {
    padding-top: 0;
}

#footer-container .sm-footer-social {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 13px;
}

#footer-container .sm-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #050817;
    font-size: 18px;
    text-decoration: none;
}

#footer-container .sm-footer-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 17px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
}

#footer-container .sm-footer-contact-row i {
    width: 20px;
    color: #fff;
    font-size: 20px;
}

#footer-container .sm-footer-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.78);
    padding-top: 7px;
    padding: 23px;
}

#footer-container .sm-footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
}

#footer-container .sm-footer-bottom ul {
    display: flex;
    align-items: center;
    gap: 42px;
}

#footer-container .sm-footer-bottom a {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
}

#footer-container .sm-footer-up {
    position: absolute;
    right: -113px;
    bottom: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #f05823;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
}

@media (max-width: 1400px) {
    #footer-container .sm-footer-main {
        grid-template-columns: 1.5fr 0.8fr 0.9fr 1.3fr;
        column-gap: 42px;
    }

    #footer-container .sm-footer-up {
        right: 0;
    }
}

@media (max-width: 991px) {
    #footer-container .sm-footer,
    #footer-container .sm-footer-inner {
        min-height: auto;
    }

    #footer-container .sm-footer-inner {
        padding: 48px 24px 28px;
    }

    #footer-container .sm-footer-main {
        grid-template-columns: 1fr 1fr;
        row-gap: 34px;
    }

    #footer-container .sm-footer-bottom {
        position: static;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 34px;
    }

    #footer-container .sm-footer-up {
        right: 0;
        bottom: 88px;
    }
}

@media (max-width: 640px) {
    #footer-container .sm-footer-inner {
        width: min(100% - 32px, 1625px);
    }

    #footer-container .sm-footer-main {
        grid-template-columns: 1fr;
    }

    #footer-container .sm-footer-brand p {
        width: auto;
    }

    #footer-container .sm-footer-bottom ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #footer-container .sm-footer-up {
        position: static;
        margin-top: 22px;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .hero-content {
        padding-bottom: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .centers-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .section-inner {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .hero-buttons a {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .contact-form,
    .price-card {
        padding: 1.5rem;
    }

    .price-features li {
        font-size: 0.8rem;
    }

    .amount {
        font-size: 1.5rem;
    }
}
/* ===== FIX HEADER FONT ISSUE (FINAL) ===== */

/* Reset root font size */
html {
    font-size: 16px !important;
}

/* Force header correct scaling */
#header-container {
    font-size: 16px !important;
}

/* Fix all text inside header */
#header-container * {
    font-size: 15px !important;
}/* ===== HERO TEXT FIX ===== */

.hero-content {
    color: #fff !important;
}

.hero-content h1 {
    color: #fff !important;
}

.hero-content p {
    color: rgba(255,255,255,0.8) !important;
}

/* yellow text already ok but force */
.text-gold {
    color: #f05823 !important;
}
