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

:root {
    --primary-color: #D66F14; /* Orange */
    --primary-light: #EA7E1F; /* Light orange */
    --primary-dark: #cd6a13; /* Dark orange */
    --extra-light-gray: #f5f5f5;
    --light-gray: #d4d4d4;
    --medium-gray: #B0B0B0;
    --dark-gray: #707070;
    --white: #FFFFFF;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #d4d4d4;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 128, 0, 0.3);
}

.btn-secondary {
    background-color: var(--extra-light-gray);
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Header styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--extra-light-gray);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.nav__list {
    display: flex;
}

.nav__item {
    margin: 0 15px;
}

.nav__link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav__link:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* Hero section */
.hero {
    min-height: 650px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    color: #333;
}

.hero__text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.hero__text p {
    margin-bottom: 20px;
}

.hero__cta {
    margin-top: 80px;
}

.hero__cta--two-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.hero__cta--two-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.hero__image {
    position: relative;
    text-align: right;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    object-position: bottom right;
    display: block;
}

/* About section */
.about {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.about__content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about__image {
    flex: 1;
}

.about__image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__text {
    flex: 1;
}

.about__text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about__list {
    margin-top: 20px;
}

.about__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.about__list li:before {
    content: '\2022';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

/* Services section */
.services {
    padding: 120px 0;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: var(--extra-light-gray);
    padding: 50px;
    border-radius: 25px;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.service-card__image {
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    width: 350px;
    height: 350px;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.service-card__icon {
    margin-bottom: 25px;
}

.service-card__icon img {
    width: 60px;
    height: 60px;
}

.service-card__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
    text-align: left;
    line-height: 1.2;
}

.service-card__text {
    margin-bottom: 40px;
    flex-grow: 1;
    text-align: left;
    line-height: 1.6;
    font-size: 16px;
    color: #666;
}

.service-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card__action {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.service-card__action .btn {
    min-width: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

/* Results section */
.results {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.result-card__image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.result-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.result-card__image:hover .result-card__overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Carousel Styles */
.result-carousel {
    position: relative;
    height: 400px;
}

/* 3D Carousel Styles - DISABLED (replaced with grid layout)
.carousel-3d {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 15px;
    perspective: 1200px;
}

.carousel-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel-3d-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.carousel-3d-slide {
    position: absolute;
    width: 80%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-3d-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: filter 0.8s ease;
    border-radius: 10px;
}

.carousel-3d-slide.fill-image img {
    object-fit: cover;
}

.carousel-3d-slide.active {
    transform: translateX(0) translateZ(0) scale(1);
    z-index: 3;
    opacity: 1;
}

.carousel-3d-slide.active img {
    filter: blur(0px) brightness(1);
}

.carousel-3d-slide.prev {
    transform: translateX(-60%) translateZ(-200px) scale(0.8);
    z-index: 2;
    opacity: 0.7;
}

.carousel-3d-slide.prev img {
    filter: blur(2px) brightness(0.7);
}

.carousel-3d-slide.next {
    transform: translateX(60%) translateZ(-200px) scale(0.8);
    z-index: 2;
    opacity: 0.7;
}

.carousel-3d-slide.next img {
    filter: blur(2px) brightness(0.7);
}

.carousel-3d-slide.hidden {
    transform: translateX(0) translateZ(-400px) scale(0.6);
    z-index: 1;
    opacity: 0;
}

.carousel-3d-slide.hidden img {
    filter: blur(4px) brightness(0.5);
}

.carousel-3d-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-3d-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 128, 0, 0.4);
}

.carousel-3d-prev {
    left: 20px;
}

.carousel-3d-next {
    right: 20px;
}

.carousel-3d-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot-3d {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot-3d.active {
    background-color: var(--primary-color);
    border-color: white;
    transform: scale(1.2);
}

.dot-3d:hover {
    background-color: var(--primary-light);
    transform: scale(1.1);
}
End of 3D Carousel Styles */

/* Testimonials section */
.testimonials {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-card__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

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

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

.testimonial-card__content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card__text {
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 15px;
    color: #555;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    font-size: 16px;
}

/* Certificates section */
.certificates {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.certificates__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.certificate-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.certificate-card__image {
    height: 400px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.certificate-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.certificate-card__image:hover .certificate-card__overlay {
    opacity: 1;
    pointer-events: auto;
}

.certificate-card__content {
    padding: 20px;
    text-align: center;
}

.certificate-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal__container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal.active .modal__container {
    transform: scale(1);
}

.modal__close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background-color 0.3s ease;
}

.modal__close:hover {
    background-color: var(--primary-color);
}

.modal__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal__image {
    width: 100%;
    height: auto;
    max-height: calc(90vh - 80px);
    object-fit: contain;
    display: none; /* Hidden by default */
    flex-shrink: 0;
}

.modal__image[src]:not([src=""]) {
    display: block; /* Show only when src is not empty */
}

.modal__image[src=""], .modal__image:not([src]) {
    display: none;
}

.modal__title {
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    background-color: var(--light-gray);
    flex-shrink: 0;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* YouTube Shorts section */
.youtube-shorts {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.youtube-shorts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.youtube-short-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.youtube-short-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.youtube-short-card iframe {
    width: 100%;
    aspect-ratio: 9/16;
    border: none;
}

.youtube-short-card__title {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.youtube-shorts__cta {
    text-align: center;
}

/* Pricing section */
.pricing {
    padding: 100px 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card--featured {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
    font-size: 24px;
    position: relative;
}

.price-card--featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-card--featured .price-card__title,
.price-card--featured .price-card__price {
    color: white;
}

.price-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.price-card__price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.price-card__features {
    margin-bottom: 30px;
}

.price-card__features li {
    margin-bottom: 15px;
}

/* Contact section */
.contact {
    padding: 100px 0;
    background-image: url('../images/photos/cover-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 220, 220, 0.85);
    z-index: 1;
}

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

.contact__content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact__form {
    max-width: 600px;
    width: 100%;
}

.contact__item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact__item-icon {
    margin-right: 20px;
}

.contact__item-icon img {
    width: 40px;
    height: 40px;
}

.contact__item-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact__item-text a:hover {
    color: var(--primary-color);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Footer styles */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.footer__copyright {
    font-size: 14px;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: translateY(-3px);
}

/* Utility classes */
.text-center {
    text-align: center;
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.privacy-policy__content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.privacy-policy__content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.privacy-policy__section {
    margin-bottom: 30px;
}

.privacy-policy__section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.privacy-policy__section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.privacy-policy__section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-policy__section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
    list-style-type: disc;
}

.privacy-policy__contact {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.privacy-policy__contact p {
    margin-bottom: 10px;
    font-weight: 500;
}

.privacy-policy__back {
    text-align: center;
    margin-top: 30px;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    vertical-align:middle;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    color: #555;
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-group label a:hover {
    color: var(--primary-dark);
}

/* Form submit button disabled state */
.btn:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover {
    background-color: #ccc;
    color: #666;
    transform: none !important;
    box-shadow: none !important;
}

/* Article Page Styles */
.article {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.article__content {
    max-width: 800px;
    margin: 0 auto;
}

.article__header {
    margin-bottom: 40px;
}

.article__back {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
    transition: color 0.3s ease;
}

.article__back:hover {
    color: var(--primary-dark);
}

.article__title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article__meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.article__image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

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

.article__body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

.article__body h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.article__body h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
}

.article__body p {
    margin-bottom: 20px;
}

.article__body ul,
.article__body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article__body li {
    margin-bottom: 10px;
}

.article__body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 5px;
}

.article__cta {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.article__cta h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.article__cta p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* Articles Section Styles */
.articles {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.article-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.article-card__image {
    height: 200px;
    overflow: hidden;
}

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

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

.article-card__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card__date {
    font-size: 12px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.article-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-card__excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-card__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    transition: color 0.3s ease;
}

.article-card__link:hover {
    color: var(--primary-dark);
}

/* Utility classes */

/* Service pages styles */
.service-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f8f8 100%);
}

.service-hero .hero__title {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-hero .hero__description {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.service-description {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card__icon {
    margin-bottom: 20px;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card__text {
    color: var(--dark-gray);
    line-height: 1.6;
}

.results-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.result-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.result-item__icon {
    margin-bottom: 20px;
}

.result-item__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.result-item__list {
    text-align: left;
    color: var(--dark-gray);
}

.result-item__list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.requirements-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.requirement-item {
    text-align: center;
    padding: 40px 20px;    
    background-color: var(--extra-light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.requirement-item__icon {
    margin-bottom: 20px;
}

.requirement-item__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.requirement-item__text {
    color: var(--dark-gray);
    line-height: 1.6;
}

.equipment-list p {
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.problems-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.problem-item {
    position: relative;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problem-item__number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.problem-item__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #333;
}

.problem-item__text {
    color: var(--dark-gray);
    line-height: 1.6;
}

.booking-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.footer {
    background-color: #333;
    padding: 40px 0;
    color: white;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

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

.footer__social {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Responsive styles for service pages */
@media (max-width: 768px) {
    .service-hero .hero__title {
        font-size: 32px;
    }
    
    .service-hero .hero__description {
        font-size: 18px;
    }
    
    .features-grid,
    .results-grid,
    .requirements-grid,
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card,
    .result-item,
    .requirement-item,
    .problem-item {
        padding: 30px 15px;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================
   Lead Magnet Section Styles
   ========================================== */
.lead-magnet {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 128, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.lead-magnet::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 128, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.lead-magnet__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--extra-light-gray);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.lead-magnet__content {
    padding-right: 20px;
}

.lead-magnet__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

.lead-magnet__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.lead-magnet__description {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.lead-magnet__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.lead-magnet__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.lead-magnet__benefits .check-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.lead-magnet__note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    margin-right: 8px;
    font-style: italic;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 128, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 128, 0, 0.5);
    }
}

/* 3D Book Visual */
.lead-magnet__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.lead-magnet__book {
    position: relative;
    width: 280px;
    height: 380px;
    transform-style: preserve-3d;
    animation: bookFloat 4s ease-in-out infinite;
}

@keyframes bookFloat {
    0%, 100% {
        transform: translateY(0) rotateY(-15deg);
    }
    50% {
        transform: translateY(-20px) rotateY(-15deg);
    }
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d5d5d5 100%);
    border-radius: 8px 0 0 8px;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.2),
        10px 10px 30px rgba(0, 0, 0, 0.3),
        -5px 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.book-cover h3 {
    background: var(--primary-color);
    color: white;
    padding: 20px 15px;
    margin: 20px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.book-cover-image {
    flex: 1;
    background-image: url('../images/guide.jpg');
    background-size: cover;
    background-position: center;
}

.book-spine {
    position: absolute;
    left: -15px;
    top: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    border-radius: 8px 0 0 8px;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   Lead Magnet Modal Styles
   ========================================== */
.modal__container--lead {
    max-width: 600px;
}

.modal__content--lead {
    padding: 0;
}

.lead-form {
    width: 100%;
}

.lead-form__header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 40px 35px 35px;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.lead-form__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.lead-form__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.lead-form__subtitle {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.5;
}

.lead-form__form {
    padding: 35px;
}

.lead-form__form .form-group {
    margin-bottom: 25px;
}

.lead-form__form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.lead-form__form input[type="text"],
.lead-form__form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.lead-form__form input[type="text"]:focus,
.lead-form__form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-hint {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 6px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: var(--primary-light);
    background-color: #FFF5EB;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #D0D0D0;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.radio-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.btn-block {
    width: 100%;
}

.lead-form__guarantee {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.lead-form__success {
    padding: 50px 35px;
    text-align: center;
}

.success-icon {
    margin-bottom: 25px;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lead-form__success h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
}

.lead-form__success p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Responsive Styles for Lead Magnet */
@media (max-width: 992px) {
    .lead-magnet__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .lead-magnet__visual {
        order: -1;
    }
    
    .lead-magnet__content {
        padding-right: 0;
        text-align: center;
    }
    
    .lead-magnet__benefits li {
        justify-content: center;
    }
    
    .lead-magnet__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .lead-magnet {
        padding: 60px 0;
    }
    
    .lead-magnet__wrapper {
        padding: 30px 20px;
    }
    
    .lead-magnet__title {
        font-size: 26px;
    }
    
    .lead-magnet__description {
        font-size: 16px;
    }
    
    .lead-magnet__book {
        width: 220px;
        height: 300px;
    }
    
    .book-cover h3 {
        font-size: 20px;
        padding: 12px 8px;
    }
    
    .modal__container--lead {
        max-width: 90%;
        margin: 20px;
    }
    
    .lead-form__header {
        padding: 30px 25px 25px;
    }
    
    .lead-form__title {
        font-size: 24px;
    }
    
    .lead-form__form {
        padding: 25px 20px;
    }
}

/* ==========================================
   Floating CTA Button for Lead Magnet
   ========================================== */
.inline-cta {
    padding: 60px 0;
    background: var(--light-gray);
}

.inline-cta__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--extra-light-gray);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.inline-cta__icon {
    flex-shrink: 0;
}

.inline-cta__content {
    flex: 1;
}

.inline-cta__title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.inline-cta__text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .inline-cta__wrapper {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }
    
    .inline-cta__title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .inline-cta {
        padding: 40px 0;
    }
    
    .inline-cta__wrapper {
        padding: 30px 20px;
    }
    
    .inline-cta__icon svg {
        width: 50px;
        height: 50px;
    }
    
    .inline-cta__title {
        font-size: 20px;
    }
    
    .inline-cta__text {
        font-size: 15px;
    }
}

/* ==========================================
   Floating CTA Button for Lead Magnet
   ========================================== */
.floating-lead-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-lead-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-lead-cta__button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 128, 0, 0.4);
    transition: all 0.3s ease;
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-lead-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 128, 0, 0.5);
}

.floating-lead-cta__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 128, 0, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(255, 128, 0, 0.6);
    }
}

@media (max-width: 768px) {
    .floating-lead-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-lead-cta__button {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .floating-lead-cta__icon {
        width: 20px;
        height: 20px;
    }
}

/* Training Options Section */
.training-options {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 128, 0, 0.15);
}

.option-card__icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.option-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.option-card__text {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Pricing Section for Individual Training */
.pricing-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 128, 0, 0.2);
}

.pricing-card--featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.05);
}

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

.pricing-card--featured .pricing-card__title,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .feature-item span {
    color: white;
}

.pricing-card--featured .feature-item svg path {
    stroke: white;
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #FFD700;
    color: #333;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 35px;
}

.pricing-card__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 500;
}

.pricing-card__features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding: 10px 0;
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive for Training Options and Pricing */
@media (max-width: 968px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card--featured {
        transform: scale(1);
    }
    
    .pricing-card--featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .option-card {
        padding: 30px 25px;
    }
    
    .option-card__title {
        font-size: 20px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-card__title {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 40px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.target-content {
    max-width: 900px;
    margin: 0 auto;
}

.target-card {
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.target-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

.target-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 115, 0, 0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(230, 115, 0, 0.3);
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Responsive styles for target audience and steps */
@media (max-width: 768px) {
    .target-audience {
        padding: 60px 0;
    }
    
    .target-card {
        padding: 40px 30px;
    }
    
    .target-text {
        font-size: 18px;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        padding: 35px 25px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .step-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .target-card {
        padding: 30px 20px;
    }
    
    .target-text {
        font-size: 16px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-text {
        font-size: 15px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner__text p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner__text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: var(--primary-dark);
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__btn--accept {
    background: var(--primary-color);
    color: white;
}

.cookie-banner__btn--accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 115, 0, 0.3);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
}

.cookie-banner__btn--decline:hover {
    background: var(--light-gray);
    border-color: var(--dark-gray);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-banner__text {
        text-align: center;
    }
    
    .cookie-banner__actions {
        justify-content: center;
    }
    
    .cookie-banner__btn {
        flex: 1;
    }
}



