@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Roboto:wght@400;500&display=swap');

:root {
    --primary-color: #ffc107;
    --secondary-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --dark-grey: #222222;
    --light-grey: #f4f4f4;
    --text-color: #cccccc;
    --text-dark: #333333;
    --white-color: #ffffff;
    --success-color: #28a745;
    --border-color: #444;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --header-height: 5rem;
    --border-radius: 8px;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.8rem;
    font-weight: 900;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--white-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: #a0a0a0;
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.bg-dark {
    background-color: var(--dark-grey);
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease;
    padding: 1rem 0;
}

#header.scrolled {
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
}

#header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

#header.scrolled .logo img {
    height: 35px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white-color);
    font-family: var(--font-primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.footer {
    background: url('../images/footer.webp') no-repeat center center/cover;
    padding-top: 8rem;
    padding-bottom: 2rem;
    position: relative;
    color: #a0a0a0;
}

.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--dark-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.9);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p,
.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #a0a0a0;
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo img {
    height: auto;
    width: 80px;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #555;
    border-radius: 50%;
    color: #a0a0a0;
    font-size: 1rem;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-col i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom ul {
    display: flex;
    gap: 1.5rem;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-image img {
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 1.5rem 0 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.why-us-item {
    background-color: var(--dark-grey);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.why-us-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-us-item h3 {
    margin-bottom: 1rem;
}

.why-us-item-large {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.why-us-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programs-home {
    background-color: var(--dark-grey);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.program-card img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-card:hover img {
    transform: scale(1.1);
}

.program-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    z-index: 2;
}

.program-card h3 {
    margin-bottom: 0.5rem;
}

.program-card p {
    margin-bottom: 1rem;
    height: 50px;
    overflow: hidden;
}

.program-card a {
    font-weight: 700;
}

.program-card a i {
    transition: transform 0.3s;
    margin-left: 5px;
}

.program-card:hover a i {
    transform: translateX(5px);
}

.trainers-section .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.trainer-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
}

.trainer-card img {
    filter: grayscale(50%);
    transition: var(--transition);
}

.trainer-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.trainer-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.8);
    padding: 1.5rem;
    transform: translateY(40%);
    transition: var(--transition);
}

.trainer-card:hover .trainer-info {
    transform: translateY(0);
}

.trainer-info h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.trainer-info span {
    display: block;
    margin-bottom: 1rem;
}

.trainer-info .socials {
    opacity: 0;
    transition: opacity 0.5s;
}

.trainer-card:hover .trainer-info .socials {
    opacity: 1;
}

.trainer-info .socials a {
    color: var(--white-color);
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.testimonials {
    background: var(--dark-grey) url('../images/reviews-bg.webp');
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--dark-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin: 0 auto 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.testimonial-card p::before,
.testimonial-card p::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-card p::before {
    top: -10px;
    left: -5px;
}

.testimonial-card p::after {
    bottom: -20px;
    right: -5px;
}

.testimonial-card h4 {
    color: var(--white-color);
}

.schedule-table-wrapper {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    text-align: center;
}

.schedule-table th,
.schedule-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.schedule-table thead {
    background-color: var(--dark-grey);
}

.schedule-table th {
    font-family: var(--font-primary);
    color: var(--primary-color);
    text-transform: uppercase;
}

.schedule-table td {
    transition: var(--transition);
}

.schedule-table td:hover {
    background-color: var(--dark-grey);
}

.schedule-table .yoga {
    background-color: rgba(3, 169, 244, 0.2);
}

.schedule-table .crossfit {
    background-color: rgba(244, 67, 54, 0.2);
}

.schedule-table .pilates {
    background-color: rgba(156, 39, 176, 0.2);
}

.schedule-table .boxing {
    background-color: rgba(255, 193, 7, 0.2);
}

.final-cta {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    background: url('../images/cta.webp') no-repeat center center/cover;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.85);
}

.cta-content {
    position: relative;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
}

.page-header {
    padding: 8rem 0 4rem;
    background-color: var(--dark-grey);
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--primary-color);
}

.page-header h1 {
    font-size: 3.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #aaa;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
}

.mission-content .section-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.history-section {
    background-color: var(--dark-grey);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item .timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    top: 30px;
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content {
    padding: 2rem;
    background-color: var(--dark-color);
    border-radius: var(--border-radius);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 35px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -30px;
    border-left-color: var(--dark-color);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -30px;
    border-right-color: var(--dark-color);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.philosophy-item i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.facility-tour {
    background-color: var(--dark-grey);
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.facility-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.facility-item img {
    transition: var(--transition);
}

.facility-item:hover img {
    transform: scale(1.1);
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.facility-item:hover .facility-overlay {
    opacity: 1;
}

.facility-overlay h3 {
    color: var(--white-color);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.facility-item:hover .facility-overlay h3 {
    transform: translateY(0);
}

.programs-header {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../images/programs-bg.webp') no-repeat center center/cover;
}

.program-detail {
    padding: 4rem 0;
}

.program-detail-grid-1,
.program-detail-grid-2 {
    display: grid;
    align-items: center;
    gap: 4rem;
}

.program-detail-grid-1 {
    grid-template-columns: 1.2fr 1fr;
}

.program-detail-grid-2 {
    grid-template-columns: 1fr 1.2fr;
}

.program-detail.reverse .program-detail-grid-1 {
    grid-template-columns: 1fr 1.2fr;
}

.program-detail.reverse .program-content {
    order: 2;
}

.program-detail.reverse .program-image {
    order: 1;
}

.program-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.program-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.program-content ul {
    padding-left: 0;
    margin: 1.5rem 0;
}

.program-content ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.program-content ul li i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.program-image img {
    border-radius: var(--border-radius);
}

.program-features {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.program-features div {
    background-color: var(--dark-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
}

.program-features i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.program-detail-full {
    padding: 10rem 0;
    position: relative;
    text-align: center;
}

.program-full-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.program-full-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.8);
    z-index: -1;
}

.program-full-content p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.program-description {
    max-width: 800px;
    margin: 1rem auto 3rem;
    font-size: 1.1rem;
}

.program-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--dark-grey);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
}

.contact-header {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../images/contact-bg.webp') no-repeat center center/cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background-color: var(--dark-grey);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    color: var(--white-color);
    margin-bottom: 0.25rem;
}

.info-item p {
    margin: 0;
    color: #aaa;
}

.contact-map iframe {
    border-radius: var(--border-radius);
    filter: invert(90%) grayscale(80%);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--dark-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--white-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-bottom: 7px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 1rem;
    color: #ccc;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: var(--white-color);
}

.thanks-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 70vh;
    padding: 2rem;
}

.thanks-section i {
    font-size: 6rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.policy-page {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    background-color: var(--dark-grey);
}

.policy-page .container {
    max-width: 850px;
    background-color: var(--dark-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.policy-page h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.policy-page .last-updated {
    text-align: center;
    color: #888;
    margin-bottom: 3rem;
    display: block;
}

.policy-page h2 {
    font-size: 1.8rem;
    color: var(--white-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333;
}

.policy-page p,
.policy-page li {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.8;
}

.policy-page ul,
.policy-page ol {
    margin-bottom: 1rem;
    padding-left: 20px;
}

.policy-page ul li {
    list-style-type: disc;
}

.policy-page ol li {
    list-style-type: decimal;
}

.policy-page a {
    text-decoration: underline;
}

.policy-page strong {
    color: #fff;
}

iframe {
    border: 0;
}

.thanks-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 70vh;
    padding: 2rem;
}

.thanks-section i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {

    h1,
    .hero-title {
        font-size: 3rem;
    }

    h2,
    .section-title h2 {
        font-size: 2.2rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-item-large {
        grid-column: 1;
        grid-row: auto;
    }

    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facility-grid {
        grid-template-columns: 1fr;
    }

    .program-detail-grid-1,
    .program-detail-grid-2,
    .program-detail.reverse .program-detail-grid-1 {
        grid-template-columns: 1fr;
    }

    .program-detail.reverse .program-content {
        order: 0;
    }

    .program-detail.reverse .program-image {
        order: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .header-btn {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--dark-grey);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease-in-out;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    h1,
    .hero-title,
    .page-header h1 {
        font-size: 2rem;
    }

    h2,
    .section-title h2 {
        font-size: 2rem;
    }

    .program-content h2 {
        font-size: 1.8rem;
    }

    .program-features {
        flex-direction: column;
        gap: 1rem;
    }

    .program-tag {
        display: block;
    }

    .why-us-grid,
    .programs-grid,
    .testimonials-grid,
    .program-benefits-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .timeline::after {
        left: 25px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 1rem;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
    }

    .timeline-content {
        text-align: left !important;
    }

    .timeline-content::after {
        left: -30px !important;
        right: auto !important;
        border-right-color: var(--dark-color) !important;
        border-left-color: transparent !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom ul {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .policy-page .container {
        padding: 2rem 1.5rem;
    }

    .policy-page h2 {
        font-size: 1.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}