@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0b1f3d;
    --primary-rgb: 11, 31, 61;
    --secondary: #ffc233;
    --secondary-rgb: 255, 194, 51;
    --accent: #f0951b;
    --dark: #071627;
    --light: #f4f7fb;
    --lighter: #ffffff;
    --body-text: #1e2a36;
    --muted-dark: #5a6b7d;
    --white: #ffffff;
    --border-light: rgba(255, 255, 255, 0.12);
    --border-dark: rgba(11, 31, 61, 0.1);
    --shadow-sm: 0 4px 18px rgba(11, 31, 61, 0.06);
    --shadow-md: 0 8px 28px rgba(11, 31, 61, 0.1);
    --shadow-lg: 0 16px 56px rgba(11, 31, 61, 0.18);
    --shadow-secondary: 0 8px 24px rgba(255, 194, 51, 0.28);
    --radius: 6px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --bs-body-font-family: var(--font-body);
    --bs-primary: var(--primary);
    --bs-secondary: var(--secondary);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    background-color: var(--lighter);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: 0.1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

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

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.bg-light-custom {
    background-color: var(--light);
}

.bg-dark-custom {
    background-color: var(--primary);
    color: var(--white);
}

.bg-dark-custom h1,
.bg-dark-custom h2,
.bg-dark-custom h3,
.bg-dark-custom h4,
.bg-dark-custom h5,
.bg-dark-custom h6 {
    color: var(--white);
}

.section-bg-image {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.section-bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62));
    z-index: -1;
}

.section-bg-image .section-title,
.section-bg-image .section-subtitle,
.section-bg-image h1,
.section-bg-image h2,
.section-bg-image h3,
.section-bg-image h4,
.section-bg-image h5,
.section-bg-image h6 {
    color: var(--white);
}

.section-bg-image .section-subtitle {
    color: var(--secondary);
}

.section-title-wrapper {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 194, 51, 0.14);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-title .text-secondary {
    color: var(--secondary);
}

.section-description {
    color: var(--muted-dark);
    font-size: 17px;
    line-height: 1.7;
}

.bg-dark-custom .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 17px 44px;
    font-size: 15px;
}

.btn-icon-round {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.navbar .logo-text span {
    color: var(--secondary);
}

.navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 10px 18px;
    transition: var(--transition);
    position: relative;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .navbar-toggler {
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 6px 10px;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-scrolled {
    background: var(--primary) !important;
    box-shadow: 0 4px 30px rgba(11, 31, 61, 0.25);
    padding: 12px 0;
}

.navbar-scrolled.navbar-light {
    background: var(--primary) !important;
}

.navbar-contact-info {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--white);
    font-size: 13px;
}

.navbar-contact-info .nav-phone,
.navbar-contact-info .nav-mail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.navbar-contact-info i {
    color: var(--secondary);
    font-size: 15px;
}

.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 650px;
}

.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 31, 61, 0.72), rgba(11, 31, 61, 0.4), rgba(11, 31, 61, 0.78));
    z-index: 1;
}

.hero-carousel .carousel-caption {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 10%;
    right: 10%;
    text-align: left;
    max-width: 720px;
    padding: 0;
}

.hero-carousel .hero-tagline {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    display: inline-block;
    background: rgba(255, 194, 51, 0.16);
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-carousel .hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.hero-carousel .hero-title .text-gradient {
    background: linear-gradient(90deg, var(--secondary), #ffe08a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--secondary);
}

.hero-carousel .hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 580px;
}

.hero-carousel .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-carousel .carousel-indicators {
    z-index: 3;
    bottom: 40px;
    left: 10%;
    right: auto;
    margin: 0;
    display: flex;
    gap: 8px;
}

.hero-carousel .carousel-indicators button {
    width: 38px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.3s ease;
    opacity: 1;
}

.hero-carousel .carousel-indicators button.active {
    background: var(--secondary);
    width: 60px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: auto;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    background-image: none;
    font-size: 28px;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.hero-carousel .carousel-control-prev-icon::before {
    content: "";
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    display: block;
    margin-left: 5px;
}

.hero-carousel .carousel-control-next-icon::before {
    content: "";
    border-right: 2px solid var(--white);
    border-top: 2px solid var(--white);
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    display: block;
    margin-right: 5px;
}

.hero-scroll-down {
    position: absolute;
    bottom: 36px;
    right: 40px;
    z-index: 3;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    writing-mode: vertical-rl;
}

.hero-scroll-down .scroll-line {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    display: inline-block;
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.feature-strip {
    background: var(--primary);
    padding: 60px 0;
    margin-top: -80px;
    position: relative;
    z-index: 4;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.feature-strip .feature-item {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid var(--border-light);
}

.feature-strip .feature-item:last-child {
    border-right: none;
}

.feature-strip .feature-icon {
    font-size: 38px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.feature-strip .feature-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.feature-strip .feature-number span {
    color: var(--secondary);
}

.feature-strip .feature-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 42px 32px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 31, 61, 0.05);
    overflow: hidden;
    height: 100%;
    text-align: left;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-icon {
    width: 74px;
    height: 74px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 194, 51, 0.16), rgba(255, 194, 51, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 26px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--primary);
    transform: scale(1.06) rotate(-3deg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    color: var(--muted-dark);
    line-height: 1.7;
}

.service-card .service-price {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin: 16px 0 0;
}

.service-card .service-price small {
    font-size: 14px;
    color: var(--muted-dark);
    font-weight: 500;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

.service-card .card-link i {
    transition: transform 0.3s ease;
}

.service-card .card-link:hover i {
    transform: translateX(6px);
}

.about-preview .about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 480px;
}

.about-preview .about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-preview .about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(11, 31, 61, 0.3);
}

.about-preview .about-experience-badge .exp-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
}

.about-preview .about-experience-badge .exp-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    margin-top: 6px;
}

.about-preview .about-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.about-preview .about-content p {
    color: var(--muted-dark);
    margin-bottom: 16px;
}

.about-preview .about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.about-preview .about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 15px;
}

.about-preview .about-list li i {
    color: var(--secondary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-preview .about-list li span {
    color: var(--body-text);
    font-weight: 500;
}

.stats-section {
    background: var(--primary);
    position: relative;
}

.stats-section .stat-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.stats-section .stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

.stats-section .stat-icon {
    font-size: 34px;
    color: var(--secondary);
    margin-bottom: 18px;
}

.stats-section .stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stats-section .stat-number .stat-suffix {
    color: var(--secondary);
}

.stats-section .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

.courses-grid .courses-toggle {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.step-section .step-wrapper {
    position: relative;
    padding: 0 20px;
}

.step-section .step-wrapper::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), rgba(255, 194, 51, 0.2));
    transform: translateX(-50%);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--lighter);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 31, 61, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-card .step-number {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, var(--accent), rgba(255, 194, 51, 0.4));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}

.step-card .step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    margin: 0 auto 22px;
    box-shadow: 0 8px 24px rgba(11, 31, 61, 0.24);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--muted-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

.testimonial-section {
    background: var(--light);
}

.testimonial-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 31, 61, 0.05);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-card .testimonial-quote-icon {
    font-size: 40px;
    color: rgba(255, 194, 51, 0.35);
    margin-bottom: 16px;
    position: absolute;
    top: 28px;
    right: 30px;
}

.testimonial-card .testimonial-rating {
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-card .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card .testimonial-person {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(11, 31, 61, 0.06);
    padding-top: 18px;
}

.testimonial-card .testimonial-person .person-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-card .testimonial-person .person-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonial-card .testimonial-person .person-role {
    font-size: 13px;
    color: var(--muted-dark);
}

.pricing-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 31, 61, 0.06);
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.pricing-featured {
    background: var(--primary);
    color: var(--white);
    border: none;
    transform: scale(1.03);
}

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

.pricing-card.pricing-featured .pricing-title,
.pricing-card.pricing-featured .pricing-price,
.pricing-card.pricing-featured .pricing-period,
.pricing-card.pricing-featured .pricing-features {
    color: var(--white);
}

.pricing-card.pricing-featured .pricing-price {
    color: var(--secondary);
}

.pricing-card .pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-secondary);
    white-space: nowrap;
}

.pricing-card .pricing-title {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted-dark);
    font-weight: 600;
    margin-bottom: 14px;
}

.pricing-card .pricing-price {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.pricing-card .pricing-price span {
    font-size: 18px;
    font-weight: 500;
}

.pricing-card .pricing-period {
    font-size: 14px;
    color: var(--muted-dark);
    margin-bottom: 26px;
}

.pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-card .pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--body-text);
    border-bottom: 1px solid rgba(11, 31, 61, 0.06);
}

.pricing-card.pricing-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-card .pricing-features li i {
    color: var(--secondary);
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-card .pricing-features li i.fa-times {
    color: #e74c3c;
    font-size: 13px;
}

.pricing-card.pricing-featured .btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.pricing-card.pricing-featured .btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.cta-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-section h2 {
    color: var(--white);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 32px;
    font-size: 17px;
}

.cta-section .cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.accordion {
    --bs-accordion-bg: var(--lighter);
    --bs-accordion-border-color: rgba(11, 31, 61, 0.1);
    --bs-accordion-btn-color: var(--primary);
    --bs-accordion-active-color: var(--accent);
    --bs-accordion-active-bg: rgba(255, 194, 51, 0.06);
    --bs-accordion-border-radius: var(--radius);
    --bs-accordion-inner-border-radius: var(--radius);
}

.accordion .accordion-item {
    margin-bottom: 14px;
    border-radius: var(--radius)
    border: 1px solid rgba(11, 31, 61, 0.08);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 31, 61, 0.06);
}

.accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion .accordion-header .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    padding: 20px 24px;
    background: var(--lighter);
}

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

.accordion .accordion-header .accordion-button:not(.collapsed) {
    background: rgba(255, 194, 51, 0.06);
    color: var(--accent);
}

.accordion .accordion-header .accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    background-image: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.accordion .accordion-header .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion .accordion-body {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--muted-dark);
    line-height: 1.8;
}

.form-section .form-wrapper {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    border: 1px solid rgba(11, 31, 61, 0.04);
}

.form-section .form-control {
    border: 1px solid rgba(11, 31, 61, 0.14);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--body-text);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-section .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 194, 51, 0.2);
    outline: none;
}

.form-section .form-control::placeholder {
    color: #aab4bf;
}

.form-section .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-section .form-select {
    border: 1px solid rgba(11, 31, 61, 0.14);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 15px;
    color: var(--body-text);
    background-color: rgba(255, 255, 255, 0.9);
}

.form-section form .form-text {
    font-size: 13px;
    color: var(--muted-dark);
}

.form-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.4s ease;
    max-width: 400px;
    border-left: 4px solid;
}

.form-notification-show {
    opacity: 1;
    transform: translateX(0);
}

.form-notification-success {
    border-left-color: #2ecc71;
}

.form-notification-success i {
    color: #2ecc71;
    font-size: 22px;
}

.form-notification-error {
    border-left-color: #e74c3c;
}

.form-notification-error i {
    color: #e74c3c;
    font-size: 22px;
}

.form-notification-info {
    border-left-color: var(--secondary);
}

.form-notification-info i {
    color: var(--secondary);
    font-size: 22px;
}

.form-notification span {
    font-size: 14px;
    color: var(--body-text);
    font-weight: 500;
}

.map-section {
    padding: 0;
}

.map-section .map-container {
    height: 480px;
    width: 100%;
}

.map-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%);
}

.map-section .map-info-panel {
    background: var(--primary);
    color: var(--white);
    padding: 60px 48px;
    height: 100%;
}

.map-section .map-info-panel h3 {
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 24px;
}

.map-section .map-info-panel .map-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.map-section .map-info-panel .map-contact-item i {
    color: var(--secondary);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.map-section .map-info-panel .map-contact-item a {
    color: rgba(255, 255, 255, 0.85);
}

.map-section .map-info-panel .map-contact-item a:hover {
    color: var(--secondary);
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    font-size: 14px;
}

.footer .footer-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
}

.footer .footer-brand span {
    color: var(--secondary);
}

.footer p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.footer h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

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

.footer .footer-links li {
    padding: 6px 0;
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer .footer-links a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer .footer-links a i {
    font-size: 10px;
    color: var(--secondary);
}

.footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.footer .footer-contact-item i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer .footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer .footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.footer .footer-hours li strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer .footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-4px);
}

.footer .footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
    margin-top: 50px;
}

.footer .footer-legal .copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer .footer-legal .legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.gdpr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 3px solid var(--secondary);
    padding: 18px 30px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

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

.gdpr-cookie-banner .gdpr-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.gdpr-cookie-banner .gdpr-cookie-icon {
    color: var(--secondary);
    font-size: 24px;
    flex-shrink: 0;
}

.gdpr-cookie-banner .gdpr-cookie-text {
    flex: 1;
    min-width: 260px;
}

.gdpr-cookie-banner .gdpr-cookie-text h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.gdpr-cookie-banner .gdpr-cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    margin: 0;
    line-height: 1.6;
}

.gdpr-cookie-banner .gdpr-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.gdpr-cookie-banner .btn-gdpr {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gdpr-cookie-banner .gdpr-accept-btn {
    background: var(--secondary);
    color: var(--primary);
}

.gdpr-cookie-banner .gdpr-accept-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.gdpr-cookie-banner .gdpr-reject-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gdpr-cookie-banner .gdpr-reject-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-secondary);
}

.btn-back-to-top.btn-back-to-top-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 194, 51, 0.4);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-sm);
    background-size: cover;
    background-position: center;
    display: block;
}

.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 31, 61, 0.7), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item .gallery-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    padding: 18px 22px;
    color: var(--white);
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-caption {
    bottom: 0;
}

.gallery-item .gallery-caption h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-item .gallery-caption span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-item .gallery-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-arrow {
    opacity: 1;
    transform: scale(1);
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 40px;
    background: var(--lighter);
    border-radius: var(--radius);
    border: 1px solid rgba(11, 31, 61, 0.06);
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 90px;
}

.partner-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
    box-shadow: var(--shadow-sm);
}

.partner-logo-item i {
    font-size: 36px;
    color: var(--primary);
}

.partner-logo-item span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.badge-custom {
    background: rgba(255, 194, 51, 0.15);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 31, 61, 0.82), rgba(11, 31, 61, 0.7));
}

.page-hero .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 20px;
}

.page-hero .page-hero-content h1 {
    color: var(--white);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.page-hero .page-hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

.page-hero .breadcrumb-line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb-line a {
    color: var(--secondary);
}

.page-hero .breadcrumb-line i {
    font-size: 10px;
}

.team-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 31, 61, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card .team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin: 36px auto 20px;
    box-shadow: 0 10px 30px rgba(11, 31, 61, 0.18);
}

.team-card .team-body {
    padding: 0 24px 32px;
}

.team-card .team-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.team-card .team-role {
    font-size: 13px;
    color: var(--muted-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.team-card .team-description {
    font-size: 14px;
    color: var(--muted-dark);
    line-height: 1.7;
}

.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.team-card .team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(11, 31, 61, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-card .team-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary), rgba(255, 194, 51, 0.2));
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    padding-bottom: 42px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item .timeline-marker {
    position: absolute;
    left: 8px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    z-index: 1;
}

.timeline-item .timeline-year {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-item .timeline-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-item .timeline-text {
    font-size: 14px;
    color: var(--muted-dark);
    line-height: 1.7;
}

.contact-info-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 31, 61, 0.05);
    height: 100%;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .cc-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 194, 51, 0.2), rgba(255, 194, 51, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin: 0 auto 18px;
}

.contact-info-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--muted-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

.page-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.page-pagination .page-link-custom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lighter);
    border: 1px solid rgba(11, 31, 61, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-pagination .page-link-custom:hover,
.page-pagination .page-link-custom.active {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    box-shadow: var(--shadow-secondary);
}

.course-detail-sidebar {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 31, 61, 0.05);
}

.course-detail-sidebar .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 31, 61, 0.08);
    font-size: 14px;
}

.course-detail-sidebar .detail-item:last-child {
    border-bottom: none;
}

.course-detail-sidebar .detail-item .detail-label {
    color: var(--muted-dark);
}

.course-detail-sidebar .detail-item .detail-value {
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-heading);
}

.blog-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 31, 61, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card .blog-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-card .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-secondary);
}

.blog-card .blog-body {
    padding: 26px 28px;
}

.blog-card .blog-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--muted-dark);
    margin-bottom: 12px;
}

.blog-card .blog-meta i {
    color: var(--accent);
    margin-right: 4px;
}

.blog-card .blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card .blog-title a {
    color: var(--primary);
}

.blog-card .blog-title a:hover {
    color: var(--accent);
}

.blog-card .blog-excerpt {
    font-size: 14px;
    color: var(--muted-dark);
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-card .blog-read-more {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card .blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-card .blog-read-more:hover i {
    transform: translateX(6px);
}

.cta-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 194, 51, 0.08);
    border-radius: 50%;
}

.cta-box h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.cta-box .btn {
    position: relative;
    z-index: 2;
}

[data-photo-slug] {
    background-size: cover;
    background-position: center;
    position: relative;
}

img[data-photo-slug] {
    background-size: cover;
    background-position: center;
    display: block;
}

@media (max-width: 1199.98px) {
    .hero-carousel {
        height: 90vh;
        min-height: 600px;
    }

    .hero-carousel .carousel-item {
        height: 90vh;
        min-height: 600px;
    }

    .hero-carousel .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-preview .about-experience-badge {
        right: 0;
    }
}

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

    .section-title {
        font-size: 32px;
    }

    .hero-carousel {
        height: 80vh;
        min-height: 550px;
    }

    .hero-carousel .carousel-item {
        height: 80vh;
        min-height: 550px;
    }

    .hero-carousel .hero-title {
        font-size: 42px;
    }

    .hero-carousel .hero-tagline {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-carousel .hero-desc {
        font-size: 16px;
    }

    .feature-strip .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .feature-strip .feature-item:last-child {
        border-bottom: none;
    }

    .pricing-card {
        margin-bottom: 30px;
    }

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

    .pricing-card.pricing-featured:hover {
        transform: translateY(-8px);
    }

    .gallery-item {
        height: 240px;
    }

    .footer .footer-legal .legal-links {
        justify-content: center;
        margin-top: 12px;
    }

    .footer .footer-legal .copyright {
        text-align: center;
    }

    .map-section .map-container {
        height: 360px;
    }

    .map-section .map-info-panel {
        padding: 40px 28px;
    }

    .page-hero {
        height: 50vh;
        min-height: 380px;
    }

    .page-hero .page-hero-content h1 {
        font-size: 40px;
    }

    .team-card {
        margin-bottom: 24px;
    }

    .step-section .step-wrapper::before {
        display: none;
    }

    .navbar-contact-info {
        display: none;
    }
}

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

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }

    .hero-carousel {
        height: 75vh;
        min-height: 520px;
    }

    .hero-carousel .carousel-item {
        height: 75vh;
        min-height: 520px;
    }

    .hero-carousel .hero-title {
        font-size: 32px;
    }

    .hero-carousel .hero-tagline {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 6px 16px;
    }

    .hero-carousel .hero-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-carousel .carousel-caption {
        left: 20px;
        right: 20px;
    }

    .hero-carousel .carousel-indicators {
        left: 20px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 14px;
    }

    .feature-strip {
        padding: 40px 0;
    }

    .feature-strip .feature-number {
        font-size: 30px;
    }

    .about-preview .about-image-wrapper {
        min-height: 360px;
    }

    .about-preview .about-experience-badge {
        bottom: 16px;
        right: 12px;
        padding: 18px 22px;
    }

    .about-preview .about-experience-badge .exp-number {
        font-size: 32px;
    }

    .about-preview .about-content h2 {
        font-size: 28px;
    }

    .stats-section .stat-item {
        padding: 28px 12px;
    }

    .stats-section .stat-number {
        font-size: 36px;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .pricing-card .pricing-price {
        font-size: 42px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .form-section .form-wrapper {
        padding: 28px 20px;
    }

    .contact-info-card {
        margin-bottom: 16px;
    }

    .gdpr-cookie-banner {
        padding: 16px 20px;
    }

    .gdpr-cookie-banner .gdpr-cookie-content {
        gap: 14px;
    }

    .gdpr-cookie-banner .gdpr-cookie-text h3 {
        font-size: 15px;
    }

    .gdpr-cookie-banner .gdpr-cookie-text p {
        font-size: 12px;
    }

    .gdpr-cookie-banner .btn-gdpr {
        padding: 8px 16px;
        font-size: 12px;
    }

    .btn-back-to-top {
        bottom: 16px;
        left: 16px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .page-hero .page-hero-content h1 {
        font-size: 32px;
    }

    .page-hero {
        height: 46vh;
        min-height: 340px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .cta-box h2 {
        font-size: 26px;
    }

    .footer {
        padding-top: 50px;
    }

    .footer .footer-legal .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .blog-card .blog-excerpt {
        font-size: 13px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
