/*Main*/
:root {
    /* Color Palette - Chess Royalty Theme */
    --primary-dark: #0a1628;
    --primary: #1a2d4a;
    --primary-light: #2d4a6f;
    --secondary: #4ea125;
    --secondary-hover: #16a34a;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-dark: #1a2d4a;
    --light-color: #fff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-accent: 0 8px 25px rgba(34, 197, 94, 0.3);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

*,*::before,*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--white-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.container {
    min-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-endline {
    height: 3px;
    width: 95%;
    margin-top: 100px;
    background: linear-gradient(to right,
        transparent 0%,
        var(--secondary) 50%,
        transparent 100%);
}

.section-header {
    font-family: 'Playfair Display', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-color);
}

/*Navigation*/
nav {
    background-color: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0 10px;
    min-height: 50px;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 22, 40, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 40px;
    height: auto;
    object-fit: cover;
}

.brand-text {
    color: var(--light-color);
    font-size: clamp(0.5rem, 4.5vw, 3rem);
    font-family: 'Playfair Display', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    background-color: var(--secondary);
    padding: 0 0.3rem;
    margin-left: 0.5rem;
    border-radius: 10px;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 220px;
    height: 98vh;
    background: rgba(17, 33, 50, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 70px 15px 15px;
    gap: 0;
    transition: var(--transition);
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    display: block;
    padding: 10px 12px;
    font-size: 20px;
    width: 100%;
    font-family: 'Playfair Display', serif;
    color: var(--light-color) !important;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    transform: translateX(5px);
}

.navbar-get-started {
    padding: 0.5rem 1rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.navbar-get-started:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.get-started {
    text-decoration: none;
}

.text-get-started {
    color: var(--light-color);
    font-size: 3rem;
}

.nav-get-started {
    color: var(--light-color);
}

.navbar-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.icon-tile {
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.icon-tile:hover {
    transform: scale(1.1);
}

.hamburger-btn {
    display: flex;
    width: 22px;
    height: 22px;
    flex-direction: column;
    justify-content: space-around;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--light-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/*Hero*/
.hero {
    padding-top: 70px;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#carousel-hero {
    width: 100%;
    height: 100%;
    position: relative;
}

#carousel-hero .carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#carousel-hero .carousel-item {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    will-change: transform;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 3rem;
}

.hero-carousel-1 {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light-color);
}

.hero-content h2 {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light-color);
}

.hero-content h3 {
    font-weight: 200;
    font-size: 1rem;
    color: var(--light-color);
}

.text-get-started {
    font-size: 0.8rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    padding: 0 10px;
    border-radius: var(--radius-full);
}

.hero-get-started {
    transition: var(--transition);
}

.hero-get-started:hover {
    transform: scale(1.05);
}

/*About*/
.about {
    padding-top: 120px;
    overflow: hidden;
    position: relative;
}

.about-wrapper {
    margin: 0 auto 2rem;
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    background-color: rgba(217, 217, 217);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    will-change: transform;
}

.about-wrapper:hover {
    transform: translateY(-5px);
}

.about-image {
    position: relative;
    width: 90px;
    height: 90px;
    top: 65%;
    left: auto;
    margin: 0 auto 1rem;
    object-fit: cover;
    object-position: bottom;
    border: 3px solid var(--light-color);
    flex-shrink: 0;
}

.about-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    color: #1e1e1e;
    font-weight: 700;
}

.about-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #1e1e1e;
}

.coach-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.signature {
    margin: -40px 0;
}

.black-rook {
    position: absolute;
    height: 300px;
    width: auto;
    z-index: -1;
    left: 48%;
    top: 7%;
    transform: rotate(-15deg);
    opacity: 0.8;
    pointer-events: none;
}

.black-king {
    position: absolute;
    height: 350px;
    width: auto;
    z-index: -1;
    right: 30%;
    top: 40%;
    transform: rotate(15deg);
    opacity: 0.8;
    pointer-events: none;
}

.white-queen {
    position: absolute;
    height: 300px;
    width: auto;
    top: 70%;
    z-index: -1;
    right: -40%;
    transform: rotate(-5deg);
    opacity: 0.8;
    pointer-events: none;
}

/*Statistics*/
.stats {
    position: relative;
    padding: 0.5rem 0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.stats-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    width: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-hover));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stats-card:hover::before {
    transform: scaleX(1);
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(34, 197, 94, 0.3);
}

.stats-icon {
    color: var(--secondary);
    font-size: 2rem;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1);
    background: rgba(201, 162, 39, 0.2);
}

.stats-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    margin: 0.5rem 0;
    font-family: 'Playfair Display', serif;
}

.stats-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*Insights*/
.insights {
    padding-top: 100px;
    padding-bottom: 20px;
    position: relative;
}

.insights-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: var(--light-color);
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.insights-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.insights-card {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.7) 0%, rgba(22, 163, 74, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    width: 100%;
    will-change: transform;
}

.insights-card:hover {
    transform: translateX(10px) scale(1.02);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(22, 163, 74, 0.8) 100%);
    box-shadow: var(--shadow-accent);
}

.insights-icon {
    color: var(--light-color);
    font-size: 2rem;
    padding: 1rem 1rem;
}

.font-1 { padding-right: 26px; }
.font-2 { padding-right: 18px; }
.font-3 { padding-right: 22px; }
.font-4 { padding-right: 10px; }
.font-5 { padding-right: 14px; }
.font-6 { padding-right: 14px; }

.insights-label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0;
    margin: 0;
}

/*Ratings*/
.ratings {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ratings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.rating-category {
    background: var(--light-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.rating-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.category-title {
    color: var(--primary-color);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-card {
    position: relative;
}

.rating-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33%;
    background: rgba(17, 33, 50, .9);
    z-index: -1;
}

.rating-card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    display: block;
    will-change: transform;
    transition: var(--transition);
    aspect-ratio: 3/4;
}

.rating-card:hover .rating-card-img {
    transform: scale(1.05);
}

.rating-card-body {
    padding: 1rem;
}

.rating-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
}

.rating-card-title h4 {
    font-family: 'Playfair Display', serif;
    color: var(--light-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.state-flag {
    width: 70px;
    height: auto;
    object-fit: cover;
}

.rating-card-text {
    color: var(--light-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: var(--secondary);
    border-radius: 50%;
    top: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.carousel-control-prev {
    left: -40px;
    right: auto;
}

.carousel-control-next {
    left: auto;
    right: -40px;
}

/*Reviews*/
.reviews {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
        url(gallery/chess_camp/cc7.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    padding: 100px 0 50px;
}

.reviews-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    height: 80vh;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reviews-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    color: var(--secondary);
    opacity: 0.15;
    position: absolute;
    top: -30px;
    left: 20px;
    line-height: 1;
}

.reviews-text {
    font-style: italic;
    line-height: 1.8;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.reviews-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.carousel-indicators [data-bs-target] {
    background-color: var(--secondary);
    border-radius: var(--radius-full);
    width: 12px;
    height: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.carousel-indicators [data-bs-target]:hover {
    transform: scale(1.3);
    background-color: var(--secondary);
}

.carousel-indicators .active {
    background-color: var(--secondary);
    width: 32px;
    border-radius: var(--radius-full);
}

/*Gallery*/
.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.gallery-card:hover {
    transform: translateY(-10px);
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    will-change: transform;
    aspect-ratio: 5/4;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--light-color);
    padding: 1rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Announcement Overlay */
.announcement-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

/* Hidden state */
.announcement-overlay.hidden {
    display: none;
}

/* Popup box */
.announcement-popup {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    text-align: center;
    overflow: hidden;
    animation: popupFade 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Decorative top border */
.announcement-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
}

.announcement-popup-content {
    padding: 40px 32px 32px;
}

.announcement-popup h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 700;
}

.announcement-popup p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.85;
}

.announcement-img-wrapper {
    position: relative;
    width: 100%;
    min-height: 150px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.announcement-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: block;
}

.announcement-img.loaded {
    opacity: 1;
    transform: scale(1);
}

.announcement-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78, 161, 37, 0.35);
}

.announcement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(78, 161, 37, 0.45);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary);
    transform: scale(1.1) rotate(90deg);
}

/* Fade out animation */
.announcement-overlay.fade-out {
    animation: overlayFadeOut 0.25s ease forwards;
}

.announcement-overlay.fade-out .announcement-popup {
    animation: popupFadeOut 0.25s ease forwards;
}

/* Animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes popupFadeOut {
    to {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
}

@keyframes overlayFadeOut {
    to {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 576px) {
    .announcement-popup {
        max-width: 100%;
        border-radius: 20px;
    }

    .announcement-popup-content {
        padding: 32px 24px 24px;
    }

    .announcement-popup h2 {
        font-size: 1.4rem;
    }

    .announcement-popup p {
        font-size: 0.9rem;
    }

    .announcement-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    .close-btn {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

/*Footer*/
footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0 10px;
    min-width: 100%;
}

.footer-content {
    display: grid;
    margin-bottom: 1rem;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--light-color);
    font-size: 1.2rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--light-color);
    font-size: 1rem;
}

.footer-section p {
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
}

.footer-section i {
    color: var(--light-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.national-flags {
    object-fit: cover;
    object-position: center;
    margin: 0.15rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    padding-top: 1.5rem;
    font-size: 0.8rem;
}

.footer-creator {
    text-decoration: none;
    color: var(--light-color);
    transition: var(--transition);
}

.footer-creator:hover {
    color: var(--secondary);
}

.contact-icon {
    position: fixed;
    bottom: 2%;
    right: 2%;
    max-width: 60px;
    width: 10%;
    height: auto;
    z-index: 1000;
    transition: var(--transition);
}

.contact-icon:hover {
    transform: scale(1.1);
}

/*Media Queries*/
@media (min-width: 360px) {
    
    .hamburger-btn {
        width: 25px;
        height: 25px;
    }

    .hamburger-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 7px);
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 15px;
    }

    .brand-text {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
        font-size: clamp(3rem, 7vw, 3.5rem);
    }
    
    .about {
        padding: 150px 0 60px 0;
    }
    
    .about-wrapper {
        padding: 1.5rem;
    }
    
    .about-image {
        width: 100px;
        height: 100px;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
    }
    
    .black-king {
        height: 400px;
        left: -30%;
    }
    
    .white-queen {
        height: 350px;
        right: -35%;
        top: 60%;
    }
    
    .insights-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .insights-card {
        padding: 0;
    }
    
    .insights-icon {
        font-size: 2.5rem;
    }
    
    .insights-label {
        font-size: 1rem;
        padding: 0;
        margin: 0;
    }
    
    .ratings {
        padding: 100px 0 50px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .rating-card-body {
        padding: 1.2rem;
    }
    
    .rating-card-img {
        height: 400px;
    }
    
    .rating-card-title h4 {
        font-size: 1.1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev { left: 10px; right: auto; }
    .carousel-control-next { left: auto; right: 10px; }
    
    .reviews {
        padding: 90px 0 50px;
    }
    
    .reviews-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .reviews-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .reviews-author {
        font-size: 1rem;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 15px;
        height: 15px;
    }
    
    .gallery {
        padding: 100px 0;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

}

@media (min-width: 576px) {

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-link {
        padding: 0;
        margin: 1rem;
    }

    .navbar-get-started {
        margin: 0.5rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-img-1 {
        object-position: 30%;
    }

    .hero-img-2 {
        object-position: 50%;
    }

    .hero-img-3 {object-position: 50% 9%;}

    .about {
        padding: 150px 0 80px 0;
    }

    .about-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1rem;
    }

    .about-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .black-rook {
        height: 400px;
        left: 70%;
    }

    .black-king {
        height: 450px;
        left: -25%;
        top: 35%;
    }

    .white-queen {
        height: 400px;
        right: -20%;
        top: 55%;
    }

    .insights {
        padding: 80px 0;
    }

    .insights-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .ratings {
        padding: 80px 0;
    }

    .ratings-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .rating-card-img {
        height: 380px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .carousel-control-prev { left: 10px; right: auto; }
    .carousel-control-next { left: auto; right: 10px; }
    
    .reviews {
        padding: 120px 0;
    }

    .reviews-card {
        padding: 2rem;
        min-height: 220px;
    }

    .reviews-text {
        font-size: 1.1rem;
    }

    .gallery {
        padding: 100px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        gap: 2rem;
    }

}

@media (min-width: 768px) {
    
    .hero-img-1 {
        object-position: bottom;
    }

    .hero-img-3 {
        object-position: 50% 5%;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-content h3 {
        font-size: 2rem;
    }

    .text-get-started {
        font-size: 1.5rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .black-king {
        height: 400px;
        left: -20%;
        top: 25%;
    }

    .white-queen {
        height: 350px;
        right: -18%;
        top: 55%;
    }

    .stats-card {
        width: 30%;
    }

    .insights-grid {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2%;
    }

    .insights-card {
        width: 47%;
    }

    .ratings-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
        justify-content: center;
        align-items: center;
    }

    .rating-card-img {
        height: 350px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .carousel-control-prev { left: 10px; right: auto; }
    .carousel-control-next { left: auto; right: 10px; }
    .reviews-card {
        padding: 2.5rem;
        min-height: 250px;
    }

    .reviews-text {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (min-width: 992px) {

    .brand-logo {
        width: 50px;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .nav-link {
        margin: 30px 20px 0 20px;
        padding: 0 10px;
        font-size: 18px;
        width: auto;
    }

    .navbar-get-started {
        padding: 1rem 0 0;
        margin-top: 1rem;
    }

    .text-get-started {
        font-size: 1rem;
    }

    .hero-img-1 {object-position: 50% 70%;}
    .hero-img-3 {object-position: 50% 10%;}

    .hero-content {
        padding: 2rem;
        font-size: clamp(2.5rem, 5vw, 5rem);
        max-width: 900px;
    }

    .about {
        padding: 200px 0 100px 0;
    }

    .about-wrapper {
        width: 85vw;
        padding: 1rem;
    }

    .about-image {
        width: 130px;
        height: 130px;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-content p {
        font-size: 1.1rem;
    }

    .black-king {
        height: 700px;
        left: -25%;
    }

    .white-queen {
        height: 430px;
        right: -18%;
    }

    .insights {
        padding: 110px 0;
    }
    
    .insights-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 4rem;
    }

    .insights-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .insights-card {
        padding: 0;
    }

    .insights-icon {
        font-size: 2.5rem;
    }

    .insights-label {
        font-size: 1.1rem;
    }

    .ratings {
        padding: 130px 0;
    }

    .ratings-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
        justify-content: center;
        align-items: center;
    }

    .category-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .rating-card-img {
        height: 350px;
    }

    .rating-card-body {
        padding: 1.5rem;
    }

    .rating-card-title h4 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .reviews {
        padding: 141px 0;
    }

    .reviews-card {
        padding: 3rem;
        max-width: 800px;
        min-height: 300px;
    }

    .reviews-text {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .reviews-author {
        font-size: 1.1rem;
    }

    .gallery {
        padding: 150px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev { left: -10px; right: auto; }
    .carousel-control-next { left: auto; right: -10px; }
    .carousel-indicators [data-bs-target] {
        width: 20px;
        height: 20px;
        border: 4px solid var(--white-color);
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }

    .footer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        margin-bottom: 0.5rem;
    }

    .footer-links {
        padding-left: 100px;
    }

    .footer-bottom {
        padding-top: 2rem;
    }

}

@media (min-width: 1200px) {
    
    .brand-logo {
        width: 45px;
        height: auto;
    }

    .brand-text {
        font-size: clamp(0.5rem, 1.5vw, 3rem);
    }

    .nav-menu {
        justify-content: space-evenly;
        padding: 0;
        margin: 0.5rem;
        right: 0;
        height: auto;
        width: 80%;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-link {
        padding: 0;
        margin: 0 25px;
    }

    .hamburger-btn {
        display: none;
    }

    .navbar-get-started {
        padding: 1rem 0.5rem 0;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .text-get-started {
        font-size: 1.5rem;
    }

    .hero-carousel-1 {
        width: 20%;
    }

    .about-wrapper {
        width: 82vw;
        padding: 1rem;
    }

    .about-image {
        width: 140px;
        height: 140px;
    }

    .black-king {
        height: 550px;
        left: -18%;
    }

    .white-queen {
        height: 450px;
        right: -19%;
    }

    .insights-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2rem;
    }

    .ratings-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
        justify-content: center;
        align-items: center;
        gap: 4rem;
    }

    .rating-card-img {
        height: 380px;
    }

    .reviews-card {
        height: 60vh;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

}

@media (min-width: 1400px) {
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children > *:nth-child(6) { transition-delay: 500ms; }

/* Image Fade In - using native loading="lazy" for better performance */

/* Enhanced Gallery Card */
.gallery-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
    will-change: transform;
    aspect-ratio: 5/4;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0.7) 70%, transparent);
    color: var(--light-color);
    padding: 2rem 1rem 1rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}