/* Manhattan Implant Institute - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0C2340;
    --navy-dark: #091a30;
    --navy-light: #1B3A5C;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #A8893A;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #f0f0f0;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-dark: #222222;
    --text-light: #666666;
    --text-white: #ffffff;
    --overlay-dark: rgba(12, 35, 64, 0.85);
    --overlay-gold: rgba(201, 168, 76, 0.9);
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER (Glassmorphic) ============ */
.site-header {
    background: rgba(12, 35, 64, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    max-width: 100%;
    margin: 0;
}

.logo {
    flex-shrink: 0;
    margin-right: auto;
}

.logo img {
    height: 91px;
    width: auto;
    padding: 5px 0;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav > ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 25px 18px;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: var(--gold);
    background: rgba(255,255,255,0.05);
}

/* Dropdown */
.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy-dark);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    list-style: none;
}

.main-nav > ul > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.dropdown li a:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Header CTA */
.header-cta .btn-gold {
    margin-left: 15px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

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

.btn-navy:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-white:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, #0a1628 100%);
    overflow: hidden;
}

/* Video Background Hero */
.hero-video {
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(12, 35, 64, 0.75) 0%, rgba(9, 26, 48, 0.6) 50%, rgba(10, 22, 40, 0.8) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(12, 35, 64, 0.8), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-radius: 2px;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.15;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.hero .highlight-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Decorative lines */
.hero-decoration {
    position: absolute;
    z-index: 1;
}

.hero-decoration.left {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.hero-decoration.right {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

/* ============ SECTIONS ============ */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

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

.section-gray {
    background: var(--off-white);
}

.section-gold {
    background: var(--gold);
    color: var(--navy);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: inherit;
}

.section-header .gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.section-dark .section-header .gold-line {
    background: var(--gold);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* ============ WELCOME SECTION ============ */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.welcome-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.welcome-text .btn {
    margin-top: 15px;
}

.welcome-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.welcome-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gold);
    z-index: -1;
    border-radius: 4px;
}

/* ============ SERVICE HIGHLIGHTS ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gold);
}

.service-card:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ============ FACULTY SECTION ============ */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.faculty-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.faculty-photo {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-photo img {
    transform: scale(1.05);
}

.faculty-photo .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(12, 35, 64, 0.8), transparent);
}

.faculty-info {
    padding: 25px;
    text-align: center;
}

.faculty-info h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.faculty-info .credentials {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    text-transform: none;
    letter-spacing: 0;
}

.faculty-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.faculty-info .btn {
    width: 100%;
}

/* ============ TESTIMONIALS ============ */
.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    text-align: center;
    padding: 40px;
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-quote {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-quote::before {
    content: '\201C';
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: var(--gold);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-author {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav button {
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--navy);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ SPONSORS ============ */
.sponsors-section {
    background: var(--off-white);
    text-align: center;
    padding: 60px 0;
}

.sponsor-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sponsor-logos img {
    height: 80px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(50%);
}

.sponsor-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.6);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-contact a {
    color: var(--gold);
    font-size: 0.9rem;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 10px;
}

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

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

/* ============ PAGE BANNER ============ */
.page-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.page-banner h1 {
    font-size: 2.8rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-banner .gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb a {
    color: var(--gold);
}

.page-banner .announcement {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* ============ PROGRAM CARDS ============ */
.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
    height: 300px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.program-card:hover img {
    transform: scale(1.05);
}

.program-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(12, 35, 64, 0.95), rgba(12, 35, 64, 0.4), transparent);
}

.program-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.program-card .read-more {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============ SCHEDULE ============ */
.schedule-day {
    background: var(--white);
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-day-header {
    background: var(--navy);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.schedule-day-header .day-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.schedule-day-header .day-info h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2px;
}

.schedule-day-header .day-info span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.schedule-day-body {
    padding: 30px;
}

.schedule-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 500;
    white-space: nowrap;
    min-width: 140px;
    letter-spacing: 1px;
}

.schedule-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============ ABOUT PAGE ============ */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-intro h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
    text-transform: none;
}

.about-intro p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: var(--off-white);
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-feature-icon {
    font-size: 1.8rem;
    color: var(--gold);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============ CONTACT FORM ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--medium-gray);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
    border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-sidebar h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-item .icon {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 3px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--gold-dark);
}

.contact-info-item a:hover {
    color: var(--gold);
}

/* ============ VISIT DR SECTION ============ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

.destination-card .dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(12, 35, 64, 0.95), transparent);
}

.destination-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.destination-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.destination-card .discover-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--gold);
    font-size: 2rem;
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Oswald', sans-serif;
}

/* ============ SATISFACTION BADGE ============ */
.satisfaction-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
}

/* ============ VISIT DR HERO ============ */
.visit-hero {
    text-align: center;
    padding: 60px 20px;
}

.visit-hero h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.visit-hero p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.8;
}

/* Schedule Highlight Cards */
.visit-schedule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.visit-schedule-card {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    transition: var(--transition);
}

.visit-schedule-card:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.visit-schedule-card h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.visit-schedule-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .logo img {
        height: 70px;
    }

    .main-nav > ul > li > a {
        padding: 25px 12px;
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(9, 26, 48, 0.92);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 1000;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav > ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav > ul > li > a {
        padding: 15px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .main-nav .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        display: none;
    }

    .main-nav > ul > li.dropdown-open .dropdown {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero .highlight-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-decoration {
        display: none;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .visit-schedule {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .schedule-item {
        flex-direction: column;
        gap: 5px;
    }

    .schedule-time {
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .page-banner h1 {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 0 15px;
    }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

/* ============ PURCHASE ACTIONS (shared, mobile-friendly button group) ============ */
.purchase-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.purchase-actions .btn {
    margin: 0;
}
@media (max-width: 768px) {
    .purchase-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .purchase-actions .btn {
        width: 100%;
    }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
