:root {
    --default-font: 'Asap', sans-serif;
    --heading-font: 'Asap', sans-serif;
    --nav-font: 'Asap', sans-serif;
}

:root {
    --background-color: #FFFFFF;
    
    --default-color: #2C3E50;
    
    --heading-color: #1E3A8A;
    
    --accent-color: #B8860B;
    
    --surface-color: #F5F5F5;
    
    --contrast-color: #FFFFFF;
    
}

:root {
    --nav-color: #2C3E50;
    
    --nav-hover-color: #B8860B;
    
    --nav-mobile-background-color: #FFFFFF;
    
    --nav-dropdown-background-color: #F5F5F5;
    
    --nav-dropdown-color: #2C3E50;
    
    --nav-dropdown-hover-color: #B8860B;
    
}



.light-background {
    --background-color: #F5F5F5;
    --surface-color: #FFFFFF;
}

.dark-background {
    --background-color: #1E3A8A;
    --default-color: #FFFFFF;
    --heading-color: #FFFFFF;
    --surface-color: #1E40AF;
    --contrast-color: #FFFFFF;
}


:root {
    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: '';
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

:root {
    --color-bg: #FFFFFF;
    --color-primary: #1E3A8A;
    --color-accent: #B8860B;
    --color-text: #2C3E50;
    --color-text-muted: #7F8C8D;
    --font-heading: 'Asap', sans-serif;
    --font-body: 'Asap', sans-serif;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #FFFFFF;
    color: var(--default-color);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-top-bar {
    background-color: #1E3A8A;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header-contact-link {
    color: var(--contrast-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-contact-link:hover {
    color: var(--accent-color);
}

.header-contact-link i {
    font-size: 16px;
}

.header-social-links {
    display: flex;
    gap: 12px;
}

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

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

.header-main {
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 5px;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 32px;
    color: var(--accent-color);
}

.sitename {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
    font-family: var(--heading-font);
}

.logo-tagline {
    font-size: 13px;
    color: var(--default-color);
    margin: 0;
    opacity: 0.8;
}

.navmenu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.navmenu a {
    color: var(--nav-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.navmenu a:hover,
.navmenu a.active {
    color: var(--nav-hover-color);
}

.navmenu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--nav-hover-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--default-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: var(--nav-mobile-background-color);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-logo .logo-content {
    gap: 10px;
}

.mobile-menu-logo .logo-icon {
    font-size: 24px;
}

.mobile-menu-logo .sitename {
    font-size: 22px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--default-color);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--nav-dropdown-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: var(--nav-dropdown-hover-color);
    background-color: rgba(184, 134, 11, 0.05);
    border-left-color: var(--nav-dropdown-hover-color);
}

.mobile-menu-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-footer .btn,
.btn-block {
    width: 100%;
    justify-content: center;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--default-color);
    font-size: 14px;
    padding: 8px 0;
}

.mobile-contact-link i {
    color: var(--accent-color);
    font-size: 16px;
}

.section {
    padding: 80px 20px;
}

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

.hero-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #FFFFFF 100%);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 18px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--default-color);
    opacity: 0.8;
}

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

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
    color: #FFFFFF;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--heading-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--heading-color);
    color: #FFFFFF;
    transform: translateY(-3px);
}

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

.hero-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-color);
}

.play-button-overlay i {
    font-size: 36px;
    color: var(--heading-color);
    margin-left: 5px;
}

.play-button-overlay:hover i {
    color: #FFFFFF;
}

.hero-features-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--default-color);
    font-size: 14px;
    pointer-events: auto;
}

.floating-card i {
    color: var(--accent-color);
    font-size: 20px;
}

.floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -20px;
    animation: float 3s ease-in-out infinite 1s;
}

.floating-card.card-3 {
    top: 50%;
    right: -30px;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.pricing-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.pricing-subtitle-main {
    font-size: 1.2rem;
    color: var(--default-color);
    opacity: 0.8;
}

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

.pricing-card {
    background: #FFFFFF;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.2);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

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

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--default-color);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--default-color);
    opacity: 0.7;
}

.pricing-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--default-color);
    font-size: 15px;
}

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

.pricing-btn {
    display: block;
    text-align: center;
    padding: 16px 24px;
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--heading-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-btn:hover {
    background: var(--heading-color);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.pricing-btn.featured-btn {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #FFFFFF;
    border-color: transparent;
}

.pricing-btn.featured-btn:hover {
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.pricing-guarantee {
    text-align: center;
    padding: 30px;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pricing-guarantee i {
    font-size: 32px;
    color: var(--accent-color);
}

.pricing-guarantee p {
    margin: 0;
    font-size: 15px;
    color: var(--default-color);
    font-weight: 500;
}

.services-section {
    padding: 100px 20px;
    background: #FFFFFF;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(184, 134, 11, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--default-color);
    opacity: 0.8;
}

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

.service-item {
    background: #FFFFFF;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.service-item.featured-service {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.02) 0%, rgba(30, 58, 138, 0.02) 100%);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #B8860B 0%, #1E3A8A 100%);
    transform: scale(1.1);
}

.service-icon-wrapper i {
    font-size: 36px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper i {
    color: #FFFFFF;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.service-item > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    padding: 10px 0;
    color: var(--default-color);
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.programs-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
}

.programs-header {
    text-align: center;
    margin-bottom: 50px;
}

.programs-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--heading-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.programs-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.programs-subtitle {
    font-size: 1.2rem;
    color: var(--default-color);
    opacity: 0.8;
}

.programs-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    background: #FFFFFF;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: var(--default-color);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--heading-color);
    color: #FFFFFF;
    border-color: var(--heading-color);
}

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

.program-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

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

.program-card.featured-program {
    border: 2px solid var(--accent-color);
}

.program-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-level-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--heading-color);
    backdrop-filter: blur(10px);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
}

.program-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.program-card:hover .program-play-overlay {
    opacity: 1;
}

.program-play-overlay i {
    font-size: 28px;
    color: var(--accent-color);
    margin-left: 3px;
}

.program-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
    width: fit-content;
}

.program-category i {
    font-size: 14px;
}

.program-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.program-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 20px;
    opacity: 0.9;
    flex: 1;
}

.program-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.program-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--default-color);
    opacity: 0.8;
}

.program-stats i {
    color: var(--accent-color);
    font-size: 16px;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--heading-color);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.program-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

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

.program-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

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

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

.footer {
    background-color: #1E3A8A;
    color: var(--contrast-color);
    font-family: var(--default-font);
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    padding: 60px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-branding {
    max-width: 350px;
}

.footer-logo {
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo .logo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    font-size: 36px;
    color: var(--accent-color);
}

.footer-logo .sitename {
    font-size: 28px;
    color: var(--contrast-color);
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-contact-info .contact-item i {
    font-size: 20px;
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-info .contact-item strong {
    display: block;
    color: var(--contrast-color);
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-contact-info .contact-item p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact-info .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info .contact-item a:hover {
    color: var(--accent-color);
}

.footer-navigation,
.footer-services,
.footer-legal {
    min-width: 180px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--contrast-color);
    margin: 25px 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

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

.social-icons .social-link:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom-content p {
    margin: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-content .credits {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.7;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

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

.scroll-top:hover {
    background: #DAA520;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader:before {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid var(--surface-color);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .navmenu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions .btn-primary {
        display: none;
    }
}

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

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .pricing-title-main,
    .services-title,
    .programs-title {
        font-size: 2rem;
    }

    .floating-card {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

.mission-section {
    padding: 100px 20px;
    background: #FFFFFF;
}

.mission-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-visual {
    position: relative;
}

.mission-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mission-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
}

.mission-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding: 30px;
    background: #F5F5F5;
    border-radius: 15px;
}

.mission-stat {
    text-align: center;
    flex: 1;
}

.mission-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.mission-stat-label {
    font-size: 14px;
    color: var(--default-color);
    opacity: 0.8;
}

.mission-content {
    padding: 20px 0;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.mission-badge i {
    color: var(--accent-color);
    font-size: 18px;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.mission-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.mission-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 30px;
    opacity: 0.9;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mission-value {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mission-value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-value-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.mission-value-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.mission-value-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--default-color);
    opacity: 0.9;
    margin: 0;
}

.about-hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    text-align: center;
}

.about-hero-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.about-hero-badge i {
    color: var(--heading-color);
    font-size: 18px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 40px;
    opacity: 0.9;
}

.about-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--default-color);
}

.about-hero-feature i {
    color: var(--accent-color);
    font-size: 20px;
}

.company-info-section {
    padding: 100px 20px;
    background: #FFFFFF;
}

.company-info-header {
    text-align: center;
    margin-bottom: 50px;
}

.company-info-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--heading-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.company-info-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.company-info-header p {
    font-size: 1.2rem;
    color: var(--default-color);
    opacity: 0.8;
}

.company-info-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.company-tab {
    padding: 12px 28px;
    background: #F5F5F5;
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--default-color);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-tab:hover,
.company-tab.active {
    background: var(--heading-color);
    color: #FFFFFF;
    border-color: var(--heading-color);
}

.company-tab i {
    font-size: 18px;
}

.company-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-tab-content {
    display: none;
}

.company-tab-content.active {
    display: block;
}

.company-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.company-card {
    background: #FFFFFF;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.company-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-card-icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.company-card-body {
    flex: 1;
}

.company-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.company-card-body p {
    font-size: 16px;
    color: var(--default-color);
    margin-bottom: 5px;
}

.company-card-body small {
    font-size: 14px;
    color: var(--default-color);
    opacity: 0.7;
}

.company-card-body a {
    color: var(--accent-color);
    text-decoration: none;
}

.company-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--heading-color);
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.company-action-btn:hover {
    background: var(--accent-color);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.company-hours {
    max-width: 600px;
    margin: 0 auto;
}

.company-hours-day {
    background: #F5F5F5;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.company-hours-day.active {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border: 2px solid var(--accent-color);
}

.company-hours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.company-hours-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.company-hours-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.company-hours-status.open {
    background: rgba(5, 150, 82, 0.1);
    color: #059652;
}

.company-hours-status.closed {
    background: rgba(223, 21, 41, 0.1);
    color: #df1529;
}

.company-hours-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--default-color);
}

.company-hours-time i {
    color: var(--accent-color);
}

.company-hours-note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 15px;
    margin-top: 30px;
}

.company-hours-note i {
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.company-hours-note p {
    margin: 0;
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.7;
}

.why-choose-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(184, 134, 11, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.why-choose-header p {
    font-size: 1.2rem;
    color: var(--default-color);
    opacity: 0.8;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: #FFFFFF;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: linear-gradient(135deg, #B8860B 0%, #1E3A8A 100%);
    transform: scale(1.1);
}

.why-choose-icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon i {
    color: #FFFFFF;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.why-choose-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--default-color);
}

.why-choose-list li i {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
}

.about-section {
    padding: 100px 20px;
    background: #FFFFFF;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding: 20px 0;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.about-badge i {
    color: var(--accent-color);
    font-size: 18px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-highlight i {
    font-size: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.about-highlight h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.about-highlight p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--default-color);
    opacity: 0.9;
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
}

.about-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.about-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #FFFFFF;
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--default-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-badge-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.team-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--heading-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.team-header p {
    font-size: 1.2rem;
    color: var(--default-color);
    opacity: 0.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.team-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.team-card-wrapper {
    display: flex;
    flex-direction: column;
}

.team-photo {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-photo-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo-box img {
    transform: scale(1.1);
}

.team-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
}

.team-qualifications {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.team-qual {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--heading-color);
    backdrop-filter: blur(10px);
}

.team-social {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-social-link:hover {
    background: var(--accent-color);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.team-position {
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-credentials {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.team-cred {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--default-color);
    opacity: 0.8;
}

.team-cred i {
    color: var(--accent-color);
    font-size: 14px;
}

.team-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 20px;
    opacity: 0.9;
}

.team-specialties {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.team-specialty {
    padding: 6px 14px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
}

.team-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--heading-color);
    border-radius: 8px;
    color: var(--heading-color);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.team-button:hover {
    background: var(--heading-color);
    color: #FFFFFF;
    gap: 12px;
}

.team-button i {
    transition: transform 0.3s ease;
}

.team-button:hover i {
    transform: translateX(5px);
}

.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.team-modal.active {
    display: flex;
}

.team-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.team-modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.team-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #F5F5F5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--default-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.team-modal-close:hover {
    background: var(--accent-color);
    color: #FFFFFF;
}

.team-modal-body {
    padding: 40px;
}

.team-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.team-cta p {
    font-size: 1.1rem;
    color: var(--default-color);
    margin-bottom: 25px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .mission-wrapper,
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-stats {
        flex-direction: column;
        gap: 20px;
    }

    .why-choose-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .mission-content h2,
    .about-hero-title,
    .company-info-header h2,
    .why-choose-header h2,
    .about-content h2,
    .team-header h2 {
        font-size: 2rem;
    }

    .about-hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .company-info-tabs {
        flex-direction: column;
    }

    .company-tab {
        width: 100%;
        justify-content: center;
    }
}
