/* ===================================================
   Dr. Pradeep Baba Madhok — Premium Brand Website
   Navy #07182E | Gold #C8A04D | White
   Cinzel (headings) | Poppins (body)
   =================================================== */

:root {
    --navy: #07182E;
    --navy-mid: #0d2444;
    --navy-dark: #040f1c;
    --gold: #C8A04D;
    --gold-light: #d4b366;
    --gold-dark: #a8863a;
    --white: #ffffff;
    --cream: #f8f6f2;
    --muted: #6c757d;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 8px 40px rgba(7, 24, 46, 0.12);
    --shadow-lg: 0 16px 60px rgba(7, 24, 46, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.3;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all 0.35s var(--ease); }
::selection { background: var(--gold); color: var(--white); }

/* ---- Shared ---- */
.section { padding: 100px 0; }

.eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.eyebrow--light { color: var(--gold-light); }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.section-title--light { color: var(--white); }

.section-desc {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
}

.section-desc--light { color: rgba(255, 255, 255, 0.65); }

.gold-line {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 24px;
}

.lead { font-size: 1.08rem; color: var(--navy-mid); }

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    font-size: 0.94rem;
}

.check-list i { color: var(--gold); }

/* ---- Buttons ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: 2px solid var(--gold);
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 12px 30px;
    border-radius: 3px;
    transition: all 0.35s var(--ease);
}

.btn-gold:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 160, 77, 0.35);
    border-color: var(--gold-light);
}

.btn-outline-gold {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 3px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 160, 77, 0.35);
}

/* ---- Navbar ---- */
.site-nav {
    padding: 18px 0;
    background: transparent;
    transition: all 0.35s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
    background: rgba(7, 24, 46, 0.97);
    padding: 10px 0;
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(200, 160, 77, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.site-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gold) !important;
    letter-spacing: 0.5px;
}

.brand-crown { font-size: 1.1rem; }

.site-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 14px !important;
    position: relative;
}

.site-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.35s var(--ease);
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--gold) !important;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
    border-color: rgba(200, 160, 77, 0.45);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28200,160,77,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy-dark);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.12;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(200, 160, 77, 0.07) 0%, transparent 55%),
        linear-gradient(180deg, var(--navy-dark), var(--navy));
}

.hero__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: var(--white);
    margin-bottom: 14px;
}

.hero__role {
    color: var(--gold-light);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    margin-bottom: 22px;
}

.hero__text {
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin-bottom: 34px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__portrait {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.hero__frame {
    position: relative;
    z-index: 2;
    border: 3px solid var(--gold);
    padding: 7px;
    background: var(--navy);
}

.hero__frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: filter 0.4s var(--ease);
}

.hero__frame:hover img { filter: grayscale(0); }

.hero__frame-accent {
    position: absolute;
    top: 28px;
    right: -26px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(200, 160, 77, 0.28);
    z-index: 1;
}

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(7px); }
}

/* ---- Stats ---- */
.stats {
    background: var(--navy);
    padding: 72px 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-box { padding: 24px 16px; transition: transform 0.35s var(--ease); }
.stat-box:hover { transform: translateY(-5px); }

.stat-box__icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: 0.85;
}

.stat-box__num {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gold);
    margin-bottom: 6px;
}

.stat-box__label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    margin: 0;
}

/* ---- About ---- */
.about { background: var(--cream); }

.about__visual { position: relative; }

.about__img {
    border-radius: 3px;
    box-shadow: var(--shadow-lg);
}

.about__badge {
    position: absolute;
    bottom: -18px;
    right: -8px;
    background: var(--navy);
    border: 2px solid var(--gold);
    padding: 18px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about__badge strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    color: var(--gold);
    line-height: 1;
}

.about__badge span {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.4;
}

/* ---- Ecosystem ---- */
.ecosystem {
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.eco-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 160, 77, 0.22);
    padding: 34px 26px;
    height: 100%;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.eco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

.eco-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

.eco-card:hover::before { transform: scaleX(1); }

.eco-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: all 0.35s var(--ease);
}

.eco-card:hover .eco-card__icon {
    background: var(--gold);
    color: var(--navy);
}

.eco-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.eco-card p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.eco-card__link {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eco-card__link i { transition: transform 0.35s var(--ease); margin-left: 4px; }
.eco-card__link:hover { color: var(--gold-light); }
.eco-card__link:hover i { transform: translateX(4px); }

/* ---- Sports ---- */
.sports__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.sports__img {
    width: 100%;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: var(--shadow);
    transition: all 0.35s var(--ease);
}

.sports__img--a { height: 260px; margin-top: 36px; }
.sports__img--b { height: 300px; }
.sports__img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

.feature-list__item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(7, 24, 46, 0.08);
    transition: padding-left 0.35s var(--ease);
}

.feature-list__item:last-child { border-bottom: none; }
.feature-list__item:hover { padding-left: 6px; }

.feature-list__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid rgba(200, 160, 77, 0.28);
    color: var(--gold);
    transition: all 0.35s var(--ease);
}

.feature-list__item:hover .feature-list__icon {
    background: var(--gold);
    color: var(--white);
}

.feature-list__item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.feature-list__item p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ---- Timeline ---- */
.timeline-sec { background: var(--navy); }

.timeline {
    max-width: 780px;
    margin: 0 auto;
    padding-left: 38px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), rgba(200, 160, 77, 0.15));
}

.timeline__item {
    position: relative;
    padding-bottom: 36px;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
    position: absolute;
    left: -34px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--gold);
    border: 3px solid var(--navy);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(200, 160, 77, 0.2);
    transition: all 0.35s var(--ease);
}

.timeline__item:hover .timeline__dot {
    transform: scale(1.25);
    box-shadow: 0 0 0 6px rgba(200, 160, 77, 0.28);
}

.timeline__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 160, 77, 0.14);
    padding: 26px 28px;
    transition: all 0.35s var(--ease);
}

.timeline__item:hover .timeline__card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 160, 77, 0.32);
    transform: translateX(5px);
}

.timeline__year {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.timeline__card h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.timeline__card p { color: rgba(255, 255, 255, 0.62); font-size: 0.9rem; margin: 0; }

/* ---- Honours ---- */
.honours { background: var(--cream); }

.honour-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(7, 24, 46, 0.07);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    transition: all 0.35s var(--ease);
}

.honour-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.honour-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.honour-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.honour-card h4 {
    font-size: 1.02rem;
    padding: 16px 18px 6px;
    margin: 0;
}

.honour-card p {
    font-size: 0.86rem;
    color: var(--muted);
    padding: 0 18px 22px;
    margin: 0;
}

.honours-pagination .swiper-pagination-bullet { background: var(--navy); opacity: 0.25; }
.honours-pagination .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* ---- Philosophy ---- */
.philosophy {
    background: linear-gradient(140deg, var(--navy-dark), var(--navy) 50%, var(--navy-mid));
}

.phil-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 160, 77, 0.18);
    padding: 32px 22px;
    text-align: center;
    height: 100%;
    transition: all 0.35s var(--ease);
}

.phil-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    transform: translateY(-7px);
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.22);
}

.phil-card__num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: rgba(200, 160, 77, 0.14);
    line-height: 1;
    margin-bottom: 10px;
}

.phil-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.35s var(--ease);
}

.phil-card:hover .phil-card__icon { background: var(--gold); color: var(--navy); }

.phil-card h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 10px; }
.phil-card p { color: rgba(255, 255, 255, 0.58); font-size: 0.86rem; margin: 0; }

/* ---- Media ---- */
.media-card {
    background: var(--white);
    border: 1px solid rgba(7, 24, 46, 0.07);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    transition: all 0.35s var(--ease);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 160, 77, 0.28);
}

.media-card__thumb { position: relative; overflow: hidden; }

.media-card__thumb img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.media-card:hover .media-card__thumb img { transform: scale(1.06); }

.media-card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 11px;
}

.media-card__body { padding: 22px; }

.media-card__body time {
    font-size: 0.78rem;
    color: var(--muted);
    display: block;
    margin-bottom: 8px;
}

.media-card__body time i { color: var(--gold); margin-right: 5px; }

.media-card__body h4 {
    font-size: 1.02rem;
    margin-bottom: 8px;
    transition: color 0.35s var(--ease);
}

.media-card:hover .media-card__body h4 { color: var(--gold-dark); }

.media-card__body p {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.media-card__body a {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.media-card__body a:hover { color: var(--gold-dark); }

.media-card--wide { display: flex; }
.media-card--wide .media-card__thumb { flex: 0 0 190px; }
.media-card--wide .media-card__thumb img { height: 100%; min-height: 170px; }

/* ---- Gallery ---- */
.gallery-sec { background: var(--navy); }

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    margin: 0;
}

.gallery-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}

.gallery-card figcaption {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 24, 46, 0.92) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.gallery-card:hover img { transform: scale(1.07); }
.gallery-card:hover figcaption { opacity: 1; }

.gallery-card h5 { color: var(--white); font-size: 1.05rem; margin-bottom: 3px; }
.gallery-card p { color: var(--gold-light); font-size: 0.82rem; margin: 0; }

.gallery-prev, .gallery-next { color: var(--gold) !important; }
.gallery-prev::after, .gallery-next::after { font-size: 1.3rem !important; }

.gallery-pagination .swiper-pagination-bullet { background: var(--white); opacity: 0.35; }
.gallery-pagination .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

.swiper { padding-bottom: 48px; }

/* ---- Quote ---- */
.quote-sec {
    position: relative;
    padding: 110px 0;
    background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1920&h=600&fit=crop') center/cover fixed;
}

.quote-sec__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 24, 46, 0.88);
}

.quote-sec__icon {
    font-size: 2.2rem;
    color: var(--gold);
    opacity: 0.55;
    margin-bottom: 20px;
}

.quote-sec__content {
    max-width: 780px;
    margin: 0 auto;
}

.quote-sec__content p {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    color: var(--white);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
}

.quote-sec__content cite {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---- Contact ---- */
.contact-sec { background: var(--cream); }

.contact-info__item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    font-size: 1.15rem;
}

.contact-info__item h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-info__item a,
.contact-info__item p { color: var(--navy); margin: 0; }
.contact-info__item a:hover { color: var(--gold); }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.social-row a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 24, 46, 0.12);
    color: var(--navy);
    transition: all 0.35s var(--ease);
}

.social-row a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 38px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
}

.contact-form .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid rgba(7, 24, 46, 0.11);
    padding: 11px 14px;
    border-radius: 3px;
    font-size: 0.93rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 160, 77, 0.14);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.68);
}

.site-footer__top {
    padding: 76px 0 48px;
    border-bottom: 1px solid rgba(200, 160, 77, 0.12);
}

.site-footer h3 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.site-footer h5 {
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.site-footer p { font-size: 0.88rem; line-height: 1.75; }

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li { margin-bottom: 9px; }

.site-footer ul a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

.site-footer ul a:hover { color: var(--gold); padding-left: 5px; }

.site-footer__contact li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
}

.site-footer__contact i { color: var(--gold); margin-top: 4px; width: 16px; }

.site-footer .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 160, 77, 0.18);
    color: var(--white);
    font-size: 0.86rem;
    border-radius: 3px;
}

.site-footer .form-control::placeholder { color: rgba(255, 255, 255, 0.38); }

.site-footer .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: none;
    color: var(--white);
}

.social-row--footer a {
    border-color: rgba(200, 160, 77, 0.28);
    color: var(--gold);
}

.site-footer__bottom { padding: 22px 0; }
.site-footer__bottom p { margin: 0; font-size: 0.82rem; }
.site-footer__credit { color: rgba(200, 160, 77, 0.55) !important; font-size: 0.78rem !important; }

/* ---- Back to top ---- */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: all 0.35s var(--ease);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .section { padding: 72px 0; }
    .hero__portrait { margin-top: 36px; }
    .hero__frame-accent { right: -14px; top: 14px; }
    .media-card--wide { flex-direction: column; }
    .media-card--wide .media-card__thumb { flex: none; }
    .media-card--wide .media-card__thumb img { height: 195px; }
    .contact-form { padding: 28px; }
}

@media (max-width: 767.98px) {
    html { scroll-padding-top: 72px; }
    .section { padding: 58px 0; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; text-align: center; }
    .sports__grid { grid-template-columns: 1fr; }
    .sports__img--a, .sports__img--b { height: 210px; margin-top: 0; }
    .timeline { padding-left: 28px; }
    .timeline__dot { left: -24px; }
    .quote-sec { background-attachment: scroll; padding: 76px 0; }
    .site-footer__top { padding: 48px 0 28px; }
    .back-top { bottom: 18px; right: 18px; width: 40px; height: 40px; }

    .site-nav .navbar-collapse {
        background: rgba(7, 24, 46, 0.98);
        padding: 18px;
        margin-top: 10px;
        border: 1px solid rgba(200, 160, 77, 0.12);
        border-radius: 3px;
    }
}

@media (max-width: 575.98px) {
    .contact-form { padding: 20px; }
    .gallery-card img { height: 250px; }
}
