/* Variables */
:root {
    --main-color: #0096ff;
    --secondary-color: #2e8b57;
    --mix-color: linear-gradient(to right, #1d86df 0%, #39b49a 100%);
    --mix-color-hover: linear-gradient(to right, #39b49a 0%, #1d86df 100%);
    --second-color: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    --nav-gradient: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    --footer-gradient: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    --header-overlay: linear-gradient(135deg, rgba(0, 210, 255, 0.5) 0%, rgba(58, 71, 213, 0.5) 100%);
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --text-color: #333;
    --light-bg: #f5f9fc;
    --dark-bg: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --primary-dark: #0a58ca;
    --scroll-btn-size: 50px;
    --scroll-btn-border-width: 4px;
    --progress-color: #000000;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 76px;
    /* Account for fixed navbar */
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3 {
    margin-bottom: 1rem;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    /* Original brand gradient with slight transparency for glass effect */
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.95) 0%, rgba(58, 71, 213, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    /* Reduced padding for smaller height */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    /* Not used if using image, but good for fallback */
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

.nav-logo {
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Nav Menu Items */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00d2ff !important;
    /* Bright Cyan Accent */
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

/* Hover Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: linear-gradient(90deg, #00d2ff, #3a47d5);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
    opacity: 1;
}

/* Dropdown Premium Style */
.dropdown-menu {
    background: rgba(15, 30, 55, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    margin-top: 15px;
    animation: fadeInDropdown 0.3s ease;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    padding-left: 25px;
    /* Slide effect */
}

.dropdown-header {
    color: #6c757d;
    /* Bootstrap default or lighter */
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrolled State - Compact */
.navbar.scrolled {
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.98) 0%, rgba(58, 71, 213, 0.98) 100%);
    padding: 0.4rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-logo {
    height: 50px;
    /* Slight shrink */
}

/* Language Switcher */
.lang-switch {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    border-color: #00d2ff;
    color: #00d2ff;
}

.lang-switch.active {
    background: linear-gradient(90deg, #00d2ff, #3a47d5);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 10px rgba(58, 71, 213, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 77, 122, 0.85) 0%, rgba(0, 168, 204, 0.85) 100%), url('../imgs/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.hero .min-vh-75 {
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffffff, #63E6BE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-emphasis-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #63E6BE;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    min-height: 60px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    line-height: 1.8;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:active {
    transform: translateY(-1px);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 230, 190, 0.1) 0%, rgba(0, 150, 255, 0.1) 100%);
    z-index: -1;
    border-radius: inherit;
}

.hero-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-container img {
    transition: transform 0.5s ease;
    border-radius: 15px;
    max-width: 100%;
    height: auto;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .hero {
        text-align: center;
        padding: 80px 0;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 80%;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .hero-image-container {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-image-container {
        max-width: 90%;
        padding: 15px;
    }
}

.hero-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 210, 255, 0.3);
    border-color: rgba(99, 230, 190, 0.4);
}

@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        padding: 1rem 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        max-width: 70%;
        padding: 15px;
        margin-bottom: 1.5rem;
    }

    .swimming-logo {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        max-width: 80%;
        padding: 10px;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.swimming-logo {
    filter: drop-shadow(0 0 10px rgba(99, 230, 190, 0.5));
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.swimming-logo:hover {
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.7));
}

.py-5 {
    overflow-x: hidden;
}

/* Gallery Section */
.gallery {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

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


/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Section Header Styling */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--mix-color);
    margin: 0 auto;
    position: relative;
}

.section-divider span {
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--secondary-color);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* About Image Styling */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: var(--mix-color);
    color: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.about-experience-number {
    font-size: 2.5rem;
    line-height: 1;
}

.about-experience-text {
    font-size: 0.9rem;
    line-height: 1.2;
}

.about-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(29, 134, 223, 0.1);
    top: -50px;
    left: -50px;
    z-index: 1;
}

.about-shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(57, 180, 154, 0.1);
    bottom: -30px;
    right: 30px;
    z-index: 1;
}

/* About Content Styling */
.about-content {
    padding: 20px;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-color);
    padding: 15px;
    background: rgba(0, 150, 255, 0.1);
    border-left: 4px solid var(--main-color);
    border-radius: 0 5px 5px 0;
}

/* About Features Styling */
.about-features {
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--mix-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.about-feature-content {
    flex: 1;
}

.about-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.about-feature-description {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.about-button {
    margin-top: 2rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 150, 255, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.price {
    color: var(--main-color);
    font-weight: bold;
    margin-top: 1rem;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 150, 255, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--mix-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle i {
    font-size: 2rem;
    color: white;
}

/* Ribbon Style */
.card {
    position: relative;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    left: -10px;
    top: 10px;
    z-index: 1;
    overflow: hidden;
    width: 120px;
    height: 40px;
    text-align: left;
}

.ribbon span {
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 24px;
    transform: rotate(0deg);
    width: 120px;
    display: block;
    background: var(--mix-color);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 8px;
    left: 0;
    border-radius: 0 4px 4px 0;
    padding: 0 10px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid var(--mix-color);
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--mix-color);
}

.ribbon span::after {
    content: "";
    position: absolute;
    left: 0;
    top: -6px;
    z-index: -1;
    border-left: 0px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 6px solid var(--mix-color);
    border-top: 0px solid transparent;
}



/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    position: relative;
}

.testimonial-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.testimonial-item {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--main-color);
}

.testimonials-slider {
    position: relative;
    padding: 0 50px;
}

.carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--main-color);
}

.prevButton,
.nextButton {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--nav-gradient);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.prevButton {
    left: 0;
}

.nextButton {
    right: 0;
}

.prevButton:hover,
.nextButton:hover {
    background: var(--mix-color-hover);
    transform: translateY(-50%) scale(1.1);
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact-info {
    background: white;
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--nav-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-text h5 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.info-text p {
    color: #6c757d;
}

.info-text a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--main-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--nav-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 150, 255, 0.3);
}

.contact-form {
    background: white;
}

.form-floating>.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating>textarea.form-control {
    height: 150px !important;
    resize: none;
}

.form-floating>.form-control:focus {
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 210, 255, 0.25);
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

.invalid-feedback {
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border: none;
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: var(--mix-color) !important;
    color: white !important;
    border-radius: 10px !important;
    padding: 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--mix-color-hover) !important;
    color: white !important;
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.25rem;
    background: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Info Section */
.info-section {
    background: var(--light-color);
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card .card-title {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.info-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--nav-gradient);
    border-radius: 2px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
    color: #6c757d;
}

.info-list li i {
    color: #00d2ff;
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.features-list {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 210, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--nav-gradient);
    color: white;
}

.feature-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.info-text {
    color: #6c757d;
    line-height: 1.6;
}

.info-text p {
    margin-bottom: 1rem;
}

.alert-info {
    background: rgba(0, 210, 255, 0.1);
    border: none;
    border-radius: 10px;
    color: var(--dark-color);
    padding: 1rem;
}

.alert-info strong {
    color: #00d2ff;
}

/* Additional Info Section Styles */
.info-tabs .nav-pills {
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-tabs .nav-link {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-tabs .nav-link:hover {
    background: rgba(var(--primary-rgb), 0.1);
}

.info-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.info-tabs .tab-content {
    padding-top: 2rem;
}



.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.5rem;
}

.info-card ul li {
    display: flex;
    align-items: start;
}

.info-card ul li i {
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .info-tabs .nav-pills {
        flex-direction: column;
        gap: 0.5rem;
        border-radius: 15px;
    }

    .info-tabs .nav-link {
        text-align: left;
        width: 100%;
    }
}

/* Discount Banner Styles */
.discount-banner {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 90%;
    background: rgba(0, 153, 204, 0.9);
    color: white;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 1;
}

.discount-banner h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
}

.discount-icon {
    font-size: 1.2rem;
    color: #fff;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.discount-banner #countdown {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
}

.discount-banner .btn {
    background: #fff;
    color: #0099cc;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 5px 15px;
}

.discount-banner .btn:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.discount-close {
    background: transparent;
    color: white;
    opacity: 0.7;
    font-size: 0.8rem;
    padding: 0;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.discount-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.btn-close {
    box-sizing: content-box;
    width: 0.8em;
    height: 0.8em;
    color: #fff;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.7;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.8em auto no-repeat;
}

/* Responsive Design */
@media (max-width: 992px) {
    .discount-banner {
        max-width: 95%;
        padding: 8px 15px;
    }
}

@media (max-width: 768px) {
    .discount-banner {
        max-width: 90%;
        padding: 8px 15px;
        border-radius: 30px;
        top: 50px;
    }

    .discount-banner .row {
        flex-direction: column;
    }

    .discount-banner .col-md-8,
    .discount-banner .col-md-4 {
        text-align: center;
        width: 100%;
    }

    .discount-banner h3 {
        font-size: 0.9rem;
        margin-bottom: 5px !important;
    }

    .discount-banner p {
        font-size: 0.8rem;
        margin-bottom: 8px !important;
    }

    .discount-banner #countdown {
        font-size: 0.8rem;
        padding: 2px 6px;
        margin: 0 3px;
    }

    .discount-banner .btn {
        font-size: 0.8rem;
        padding: 4px 10px;
        margin-top: 5px;
        background: #fff;
        color: #0099cc;
        border: none;
        border-radius: 20px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .discount-banner .btn:hover {
        background: #f0f8ff;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 480px) {
    .discount-banner {
        max-width: 95%;
        padding: 6px 12px;
        border-radius: 20px;
    }
}

/* ============================================ */
/* NEW BOOTSTRAP DISCOUNT BANNER STYLES */
/* ============================================ */
.discount-banner-bootstrap {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: auto;
    max-width: 90%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.discount-banner-bootstrap .alert-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.discount-banner-bootstrap p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}



.discount-banner-bootstrap .btn-warning {
    background: #ffc107;
    border: none;
    color: #000;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.discount-banner-bootstrap .btn-warning:hover {
    background: #ffca2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.discount-banner-bootstrap .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

.discount-banner-bootstrap .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.discount-banner-bootstrap .fa-gift,
.discount-banner-bootstrap .fa-star {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive styles for new banner */
@media (max-width: 992px) {
    .discount-banner-bootstrap {
        max-width: 95%;
        padding: 12px 20px;
        top: 60px;
    }

    .discount-banner-bootstrap .alert-heading {
        font-size: 1rem;
    }

    .discount-banner-bootstrap p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .discount-banner-bootstrap {
        max-width: 95%;
        padding: 10px 15px;
        top: 55px;
        border-radius: 12px;
    }

    .discount-banner-bootstrap .alert-heading {
        font-size: 0.9rem;
    }

    .discount-banner-bootstrap p {
        font-size: 0.8rem;
    }

    .discount-banner-bootstrap #midnight-countdown {
        font-size: 0.9rem;
        padding: 3px 8px;
    }

    .discount-banner-bootstrap .btn-warning {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    .discount-banner-bootstrap .row {
        gap: 0.5rem !important;
    }
}

@media (max-width: 576px) {
    .discount-banner-bootstrap {
        max-width: 98%;
        padding: 8px 12px;
        top: 50px;
    }

    .discount-banner-bootstrap .alert-heading {
        font-size: 0.85rem;
    }

    .discount-banner-bootstrap p {
        font-size: 0.75rem;
    }

    .discount-banner-bootstrap #midnight-countdown {
        font-size: 0.8rem;
        padding: 2px 6px;
    }

    .discount-banner-bootstrap .btn-warning {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .discount-banner-bootstrap .fa-gift {
        display: none;
    }
}

/* Price Styles */
.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 0.9em;
}

.discounted-price {
    color: var(--main-color);
    font-weight: bold;
}

.price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Language Switcher */
.lang-switch {
    padding: 5px 10px;
    margin-left: 10px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-switch:hover,
.lang-switch.active {
    background: #fff;
    color: #212529;
}

/* Footer Styles */
footer {
    background: var(--footer-gradient) !important;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: var(--mix-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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



.footer-divider {
    margin: 2rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.footer-bottom {
    padding-top: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright {
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        max-width: 95%;
    }

    .about-image {
        max-width: 90%;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .navbar-brand img {
        height: 35px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        margin: 0 auto;
        max-width: 80%;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
    }

    .about-content {
        text-align: center;
    }

    .about-intro {
        margin: 0 auto;
    }

    .about-description {
        max-width: 100%;
    }

    .about-feature-item {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }

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

    .testimonial-card {
        padding: 20px;
    }
}

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

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--main-color);
        margin: 5px 0;
        transition: var(--transition);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .about-experience {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
        right: 0;
        bottom: 0;
    }

    .about-experience-number {
        font-size: 2rem;
    }

    .about-experience-text {
        font-size: 0.8rem;
    }

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

    .contact-info {
        margin-bottom: 30px;
    }

    #WAButton {
        right: 120px;
        font-size: 30px;
    }

    #messenger-icon {
        right: 65px;
        font-size: 30px;
    }

    .scroll-to-top {
        right: 175px;
    }
}

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

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        padding: 7px 14px;
        font-size: 0.85rem;
        margin: 5px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-experience {
        width: 70px;
        height: 70px;
    }

    .about-experience-number {
        font-size: 1.8rem;
    }

    .about-experience-text {
        font-size: 0.7rem;
    }

    .about-shape-1,
    .about-shape-2 {
        width: 100px;
        height: 100px;
    }

    .testimonial-card {
        padding: 15px;
    }

    #WAButton {
        right: 100px;
    }

    #messenger-icon {
        right: 55px;
    }

    .scroll-to-top {
        right: 145px;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.5rem 0;
    }
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--primary-dark) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    transform: skewY(-3deg);
}

.contact-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.contact-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Button Styles */
.btn {
    position: relative;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-gradient {
    background: var(--mix-color);
    border: none;
    color: white;
}

.btn-gradient:hover {
    background: var(--mix-color-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 150, 255, 0.3);
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-gradient:hover {
    background: white;
    color: #00d2ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-second-gradient {
    background: var(--second-color);
    border: none;
    color: white;
}

.btn-second-gradient:hover {
    background: linear-gradient(90deg, #3a47d5 0%, #00d2ff 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 71, 213, 0.3);
}

/* Custom button styles */
.btn-primary {
    background-color: var(--main-color);
    border-color: var(--main-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}



section {
    padding: 5rem 0;
}

section h2 {
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--main-color);
    margin: 1rem auto;
}

.form-control,
.form-select {
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.15);
}

.social-icons a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    section {
        padding: 4rem 0;
    }

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

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }

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

    .btn {
        font-size: 0.75rem;
        text-align: center;
    }
}

@media print {

    .navbar,
    .footer {
        display: none;
    }

    body {
        padding-top: 0;
    }

    .container {
        width: 100%;
        max-width: none;
    }
}

/* Course Page Styles */
.course-hero {
    padding-top: 120px;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.price-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--mix-color);
}

.timeline-item {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--mix-color);
    border-radius: 50%;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        margin-left: 60px;
    }

    .timeline-item::before {
        left: -45px;
    }
}

/* Service Page Styles */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.goal-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.bring-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.bring-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.bring-item:hover {
    transform: translateX(5px);
}

.bring-item i {
    font-size: 1.5rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}





@media (max-width: 768px) {
    .bring-list {
        gap: 1rem;
    }

    .bring-item {
        min-width: 100%;
    }
}

/* Important Notice Styles */
.important-notice {
    border-left: 4px solid var(--primary-color);
}

.important-notice .card-icon {
    background: rgba(255, 193, 7, 0.1);
}

.important-notice .card-icon i {
    color: #ffc107;
}

.notice-content {
    font-size: 1.1rem;
}

.notice-content .alert {
    border-radius: 10px;
    border: none;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

.notice-content .alert strong {
    color: #856404;
}

/* Messenger icon style */
#messenger-icon {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
    font-size: 44px;
    color: #0078FF;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#messenger-icon:hover {
    background-color: #0078FF;
    color: white;
}

/* WhatsApp floating icon */
#WAButton {
    position: fixed;
    bottom: 160px;
    right: 20px;
    z-index: 999;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#WAButton i {
    font-size: 44px;
    color: #63E6BE;
    transition: color 0.3s ease;
}

#WAButton:hover {
    background-color: #63E6BE;
    color: white;
}



@media (max-width: 768px) {
    #WAButton i {
        font-size: 30px;
    }

    #messenger-icon {
        font-size: 30px;
    }
}

#cookie-banner {
    padding: 15px 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: var(--scroll-btn-size);
    height: var(--scroll-btn-size);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top .arrow {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--progress-color) 0%, transparent 0%);
    transform: rotate(-90deg);
}

.scroll-progress::before {
    content: '';
    position: absolute;
    top: var(--scroll-btn-border-width);
    left: var(--scroll-btn-border-width);
    right: var(--scroll-btn-border-width);
    bottom: var(--scroll-btn-border-width);
    background: var(--main-color);
    border-radius: 50%;
    z-index: 1;
}

/* Second Scroll Progress Circle */
.scroll-to-top .second-progress {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(var(--scroll-btn-size) + 20px);
    height: calc(var(--scroll-btn-size) + 20px);
    border-radius: 50%;
    background: conic-gradient(azure 0%, transparent 0%);
    transform: rotate(-90deg);
    z-index: 0;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.5);
}

.scroll-to-top .second-progress::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(240, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.hidden {
    display: none;
}


/* Progress bar styles for skupinovy-kurz.html */
.custom-progress {
    background: #e9ecef;
    border-radius: 1.5rem;
    height: 38px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.custom-progress-bar {
    background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    padding-left: 18px;
    transition: width 0.7s cubic-bezier(.4, 2, .6, 1);
    height: 100%;
}

.custom-progress-label {
    position: absolute;
    left: 18px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    z-index: 2;
}

.custom-progress-wrap {
    position: relative;
}

/* ========================================
   MODERN SERVICES & PRICING DESIGN
   ======================================== */

/* Services Overview Section */
.services-overview {
    background: linear-gradient(135deg, #f5f9fc 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, rgba(58, 71, 213, 0.1) 100%);
    border-radius: 0 0 50% 50%;
}

.service-category {
    position: relative;
    z-index: 1;
}

.service-category .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-category .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-category .card-header {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    border: none;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-category .card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30%, -30%);
    }
}

.service-category .card-header.bg-primary {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
}

.service-category .card-header.bg-info {
    background: linear-gradient(to right, #1d86df 0%, #39b49a 100%);
}

.service-category .card-header.bg-warning {
    background: linear-gradient(90deg, #ffd700 0%, #ffb347 100%);
    color: #333 !important;
}

.service-variant {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-variant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #00d2ff 0%, #3a47d5 100%);
    transition: height 0.3s ease;
}

.service-variant:hover {
    border-color: #00d2ff;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    transform: translateY(-5px);
}

.service-variant:hover::before {
    height: 100%;
}

.service-variant.bg-light {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #00d2ff;
}

.service-variant .ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(238, 90, 111, 0.3);
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 10;
}

/* Pricing Section */
.pricing {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    opacity: 0.05;
}

.pricing-category {
    position: relative;
    z-index: 1;
}

/* Modern Pricing Tables */
.table-responsive {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing .table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing .table thead th {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1.2rem 1rem;
    border: none;
}

.pricing .table thead.table-primary th {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
}

.pricing .table thead.table-info th {
    background: linear-gradient(to right, #1d86df 0%, #39b49a 100%);
}

.pricing .table tbody tr {
    transition: all 0.3s ease;
}

.pricing .table tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.01);
}

.pricing .table tbody td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    border-color: #e9ecef;
}

/* Highlighted Pricing Row (NEJOBLÍBENĚJŠÍ) */
.table-success {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%) !important;
    position: relative;
}

.table-success::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #56ab2f 0%, #a8e063 100%);
}

.table-success td {
    border-color: #56ab2f !important;
    font-weight: 500;
}

.table-success:hover {
    background: linear-gradient(135deg, #c3fc68 0%, #85d590 100%) !important;
    box-shadow: 0 5px 20px rgba(86, 171, 47, 0.3);
}

/* Price Styling with data-original-price */
.pricing .h4,
.pricing .h5 {
    font-weight: 700;
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-success.fw-bold {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.badge.bg-success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%) !important;
    box-shadow: 0 4px 15px rgba(86, 171, 47, 0.3);
}

.badge.bg-danger {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%) !important;
    box-shadow: 0 4px 15px rgba(235, 51, 73, 0.3);
    animation: pulse 2s infinite;
}



/* Alert Box for Startovací Balíček */
.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: none;
    border-radius: 15px;
    border-left: 5px solid #00d2ff;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.2);
}

.alert-info .alert-heading {
    color: #4a5568;
    font-weight: 700;
}

/* Buttons */
.pricing .btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.pricing .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pricing .btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    box-shadow: 0 4px 15px rgba(86, 171, 47, 0.4);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(86, 171, 47, 0.5);
}

.btn-info {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.5);
}

.btn-outline-primary {
    border: 2px solid #00d2ff;
    color: #00d2ff;
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    color: white;
    border-color: transparent;
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    background: transparent;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
}

/* Strikethrough Price */
.text-decoration-line-through {
    position: relative;
    opacity: 0.6;
}

/* Icon Styling */
.service-variant i.fa-check {
    color: #56ab2f;
}

.service-variant i.fa-times {
    color: #eb3349;
}

/* Pricing Page Hero */
.pricing-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.pricing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/hero-bg.jpg') center/cover;
    opacity: 0.1;
}

.pricing-hero .badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.min-vh-50 {
    min-height: 50vh;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    box-shadow: 0 20px 60px rgba(0, 210, 255, 0.3);
    border: none;
}

.cta-box .btn-light {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-box .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Pricing Teaser Section (on homepage) */
.pricing-teaser {
    position: relative;
    overflow: hidden;
}

.pricing-teaser-box {
    transition: all 0.3s ease;
}

.pricing-teaser-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15) !important;
}

.pricing-teaser-box .fa-tags {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-teaser-box .badge {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========================================
   MODERN PRICING CARDS
   ======================================== */

/* Main Pricing Card */
.pricing-card-modern {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    border: 2px solid #f0f0f0;
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #00d2ff;
}

/* Featured Card (8-lesson course) */
.pricing-card-featured {
    border: 3px solid #56ab2f;
    background: linear-gradient(135deg, #f0fff4 0%, #e6f7ed 100%);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 25px 70px rgba(86, 171, 47, 0.3);
}

/* Decoy Card */
.pricing-card-decoy {
    opacity: 0.85;
    border-color: #e0e0e0;
}

.pricing-card-decoy:hover {
    opacity: 1;
}

/* Card Header */
.pricing-card-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.pricing-card-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Pricing Amount */
.pricing-card-body {
    padding: 1.5rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.price-original {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    vertical-align: top;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-card-featured .price-value {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.9rem;
    color: #999;
}

.price-per-lesson {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.price-per-lesson-featured {
    background: linear-gradient(135deg, #e6f7ed 0%, #d4fc79 100%);
    color: #2d5016;
    font-weight: 600;
}

/* Savings Badge */
.savings-badge {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(235, 51, 73, 0.3);
    animation: pulse 2s infinite;
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #00d2ff;
    font-size: 1.1rem;
}

.pricing-card-featured .pricing-features i {
    color: #56ab2f;
}

/* Card Footer */
.pricing-card-footer {
    padding: 0 1.5rem 1.5rem;
}

/* Badges */
.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00d2ff 0%, #3a47d5 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
    z-index: 10;
}

.pricing-badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(86, 171, 47, 0.4);
    z-index: 10;
}

/* Comparison Chart */
.comparison-chart {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead th {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    color: white;
    font-weight: 600;
    padding: 1rem;
    border: none;
}

.comparison-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.featured-col {
    background: linear-gradient(135deg, #f0fff4 0%, #e6f7ed 100%);
    font-weight: 600;
}

/* Simple Pricing Cards (for groups & kids) */
.pricing-card-simple {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.pricing-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #00d2ff;
}

.pricing-card-simple-featured {
    border-color: #00d2ff;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.pricing-card-simple-kids {
    border-color: #39b49a;
    background: linear-gradient(135deg, #f0fff9 0%, #e6f7f2 100%);
}

.pricing-card-header-simple {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-card-header-simple h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.pricing-card-header-simple small {
    color: #666;
    font-size: 0.85rem;
}

.pricing-amount-simple {
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-amount-simple .price-value {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-currency-small {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-left: 0.25rem;
}

.price-details {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.features-simple {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.features-simple li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.features-simple i {
    color: #00d2ff;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-category .card-header h3 {
        font-size: 1rem;
    }

    .pricing .table {
        font-size: 0.85rem;
    }

    .pricing .table thead th,
    .pricing .table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .service-variant {
        margin-bottom: 1rem;
    }

    .pricing-hero {
        min-height: 40vh;
        padding-top: 80px;
    }

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

    .cta-box {
        padding: 2rem !important;
    }

    /* Pricing Cards Mobile */
    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: scale(1.02) translateY(-5px);
    }

    .price-value {
        font-size: 2.5rem;
    }

    .pricing-card-title {
        font-size: 1.25rem;
    }

    .pricing-badge-featured {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .comparison-chart {
        padding: 1rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.75rem 0.5rem;
    }
}

/* ========================================
   NOVÝ MODERNÍ CENÍK STYLING
   ======================================== */



.pricing-badge-decoy {
    background: #6c757d;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.pricing-badge-age {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.pricing-card-decoy {
    border: 2px solid #e0e0e0;
}

/* Price Display */
.price-display {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.price-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00d2ff;
    line-height: 1;
}

.price-featured {
    color: #00d2ff;
    background: linear-gradient(135deg, #00d2ff 0%, #3a47d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: #6c757d;
    margin-top: 5px;
}

.price-per-lesson {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 8px;
}

/* Benefits Section in Cards */
.card-benefits {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.card-benefits h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-benefits li {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.card-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Comparison Table - Enhanced */
.comparison-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 60px;
}

.comparison-table-modern {
    margin-bottom: 0;
}

.comparison-table-modern thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-table-modern thead th {
    padding: 20px 15px;
    font-weight: 700;
    border: none;
}

.comparison-table-modern tbody td {
    padding: 18px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table-modern .featured-col {
    background: #f0f8ff;
}

.comparison-table-modern tbody tr:hover {
    background: #fafafa;
}

/* Mobile-responsive comparison table */
@media (max-width: 768px) {
    .comparison-section {
        overflow: hidden;
    }

    .comparison-section h4 {
        font-size: 1.1rem;
        padding: 0 10px;
        margin-bottom: 1rem;
    }

    .comparison-section .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        position: relative;
    }

    .comparison-table-modern {
        font-size: 0.75rem;
        min-width: 650px;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .comparison-table-modern thead th {
        padding: 10px 6px;
        font-size: 0.7rem;
        line-height: 1.2;
        vertical-align: middle;
    }

    .comparison-table-modern tbody td {
        padding: 10px 6px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .comparison-table-modern tbody td:first-child {
        position: sticky;
        left: 0;
        background: white;
        font-weight: 600;
        z-index: 10;
        box-shadow: 3px 0 8px rgba(0, 0, 0, 0.08);
        min-width: 110px;
        max-width: 110px;
        white-space: normal;
    }

    .comparison-table-modern thead th:first-child {
        position: sticky;
        left: 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        z-index: 11;
        box-shadow: 3px 0 8px rgba(0, 0, 0, 0.08);
        min-width: 110px;
        max-width: 110px;
    }

    .comparison-table-modern tbody tr:hover td:first-child {
        background: white;
    }

    .comparison-table-modern .featured-col {
        background: #e3f2fd !important;
    }

    /* Add scroll indicator */
    .comparison-section .table-responsive::before {
        content: "👉 Posuňte pro více";
        position: absolute;
        right: 10px;
        top: 10px;
        background: rgba(0, 210, 255, 0.9);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 600;
        z-index: 5;
        pointer-events: none;
        animation: pulse 2s infinite;
    }


}

/* Benefit Cards */
.benefit-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #00d2ff;
    margin-bottom: 15px;
}

/* Pricing Simple Cards */
.pricing-card-simple {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    background: white;
    transition: all 0.3s ease;
}

.pricing-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card-simple-featured {
    border: 2px solid #00d2ff;
}

.pricing-card-kids {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

/* Section Backgrounds */
.pricing-section-gradient {
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

/* CTA Box */
.cta-box-modern {
    background: linear-gradient(135deg, #00d2ff 0%, #3a47d5 100%);
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.3);
    border-radius: 16px;
    padding: 50px;
}

/* News Section */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.news-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--main-color);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Article Page */
.article-hero {
    margin-top: -76px;
    /* Compensate for navbar padding */
    padding-top: 76px;
}

/* ========================================
   GIFT CARD LANDING PAGE STYLES
   ======================================== */

/* Gift Hero Section */
.gift-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.gift-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/swimming-group.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.gift-hero .container {
    position: relative;
    z-index: 1;
}

.gift-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gift-subheadline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 500;
}

.gift-trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.trust-badge i {
    font-size: 1.5rem;
    color: #ffd700;
}

/* Gift CTA Button */
.gift-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 15px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.gift-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
}

.gift-cta-button i {
    margin-right: 0.5rem;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(to bottom, #f7fafc, white);
    padding: 80px 0;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.benefit-description {
    color: #718096;
    line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.step-description {
    color: #718096;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, white, #f7fafc);
    padding: 80px 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: #718096;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta-button {
    background: white;
    color: #667eea;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-decoration: none;
}

.final-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gift-headline {
        font-size: 2.5rem;
    }

    .gift-subheadline {
        font-size: 1.25rem;
    }

    .pricing-card-simple-featured {
        transform: scale(1);
    }

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

/* Gift card icon and title styles */
.pricing-card-simple .gift-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-card-simple .gift-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #2d3748;
}

.pricing-card-simple .gift-card-description {
    text-align: center;
    color: #718096;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-card-simple .gift-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.pricing-card-simple .gift-price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.pricing-card-simple .gift-price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #667eea;
    margin-left: 0.25rem;
}

.pricing-card-simple .gift-price-detail {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

.pricing-card-simple .gift-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-card-simple .gift-features li {
    padding: 0.6rem 0;
    color: #4a5568;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-card-simple .gift-features li i {
    color: #48bb78;
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

/* Orange Button for Gift Page */
.btn-orange {
    background: linear-gradient(135deg, #fd7e14 0%, #ff9f43 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.4);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #ff9f43 0%, #fd7e14 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 126, 20, 0.5);
    color: white;
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    font-size: 0.9rem;
}

.footer-logo {
    height: 50px;
}

.footer h5 {
    color: var(--main-color);
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--main-color);
}

.footer-nav li {
    margin-bottom: 0.7rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info li {
    color: rgba(255, 255, 255, 0.6);
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-3px);
}

.hover-white:hover {
    color: white !important;
}

.copyright-section {
    padding-top: 1rem;
}

/* Scroll to top button (ensure it stays on top of footer) */
.scroll-to-top {
    z-index: 1050;
}

/* ====================
   Blog Section
   ==================== */
/* Filter Buttons Styling */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 10px;
}

.btn-filter {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    color: var(--main-color);
    background-color: #fff;
}

.btn-filter.active {
    background: var(--nav-gradient);
    color: white;
    box-shadow: 0 6px 15px rgba(0, 210, 255, 0.4);
    border-color: transparent;
}

.btn-filter.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.6);
}

/* Bring Items Styling */
.bring-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bring-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.bring-item:hover {
    transform: translateX(5px);
}

.bring-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.bring-item i {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}