/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'PingFang SC', sans-serif;
    color: var(--color-sec);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--fs-14);
    transition: padding-top 0.3s ease;
}

p {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 400;
}

:root {
    --color-fff: #fff;
    --color-000: #000;
    --color-main: #772267;
    --color-sec: #231F20;
}

:root {
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-24: 24px;
    --fs-28: 28px;
    --fs-30: 30px;
}

button:focus {
    box-shadow: none;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

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

header {
    background-color: var(--color-fff);
    position: relative;
    width: 100%;
    height: auto;
    padding: 5px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Header placeholder to prevent layout jump */
.header-placeholder {
    display: none;
    width: 100%;
    background-color: transparent;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    animation: slideDown 0.3s ease-out;
}


header.fixed .logo img {
    height: 50px;
    transition: height 0.3s ease;
}

@media (min-width: 992px) {
    header.fixed .logo img {
        height: 60px;
    }
}

@media (min-width: 1200px) {
    header.fixed .logo img {
        height: 70px;
    }
}

/* Mobile optimization for fixed header */
@media (max-width: 767px) {
    header.fixed {
        padding: 5px 0;
    }
    
    header.fixed .logo img {
        height: 40px;
    }
}

.header-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
    padding: 10px 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: cover;
    transition: height 0.3s ease;
}

@media (min-width: 992px) {
    .logo img {
        height: 80px;
    }
}

@media (min-width: 1200px) {
    .logo img {
        height: 100px;
    }
}

.nav-lang-box {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-lang-item {
    display: flex;
    flex-direction: row;
}

@media (min-width: 768px) {
    .nav-lang-item {
        flex-direction: column;
        align-items: flex-end;
    }
}

.nav-lang-item ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .nav-lang-item ul {
        margin-bottom: 0px;
    }
}

.nav-lang-item ul li {
    margin-left: 10px;
}

.nav-lang-item ul li a {
    font-size: var(--fs-14);
    color: var(--color-sec);
}

.nav-lang-item ul li a.active{
    color: var(--color-main);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 30vh;
    height: 400px;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 0;
    margin: 0 12px;
    border-radius: 20px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 80vh;
        height: 80vh;
        border-radius: 35px;
        margin: 0 24px;
    }

}

@media (min-width: 1400px) {
    .hero-section {
        min-height: 100vh;
        height: 100vh;
        border-radius: 50px;
        margin: 0 24px;
    }

}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.hero-section img,
.hero-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-section video {
    object-position: bottom;
}

.hero-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
    z-index: 2;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-share {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.share-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: var(--color-main);
    transform: translateY(-50%);
}

.share-info .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #fff;
    text-decoration: none;
    font-size: var(--fs-16);
    background-color: rgba(0, 0, 0, 0) !important;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .share-info {
        padding: 10px 50px;
    }

    .share-info .social-icon {
        width: 40px;
        height: 40px;
        font-size: var(--fs-24);
    }
}

.share-info .social-icon:hover {
    transform: translateY(-2px);
    color: #fff;
}

.section-content {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .section-content {
        padding: 60px 0;
    }
}

@media (min-width: 1200px) {
    .section-content {
        padding: 80px 0;
    }
}

@media (min-width: 1600px) {
    .section-content {
        padding: 100px 0;
    }
}

/* Rehab Section */
.rehab-section {
    background: #fff;
}

@media (min-width: 1200px) {
    .rehab-section {
        padding-top: 60px;
        padding-bottom: 150px;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: var(--color-main);
}

.video-wrapper {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player {
    background-color: #000;
}

/* 確保在移動設備上視頻控件正常顯示 */
.video-player::-webkit-media-controls {
    display: flex !important;
}

.video-player::-webkit-media-controls-panel {
    display: flex !important;
}

/* iOS Safari 特定樣式 */
@supports (-webkit-appearance: none) {
    .video-player {
        -webkit-appearance: none;
    }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.content-box {
    padding: 20px;
}

.mp-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: start;
    color: #555;
}

@media (min-width: 768px) {
    .mp-content p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .mp-content p {
        font-size: 1.35rem;
    }
}

.mp-content p:last-child {
    margin-bottom: 0;
}

/* Info Section */
.info-section {
    background-color: #878486;
    /* padding: 100px 0; */
}

@media (min-width: 992px) {
    .info-section {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) {
    .info-section {
        padding: 150px 0;
    }
}

.info-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.info-content p {
    line-height: 1.8;
    color: #fff;
}

/* Applications Section */
.applications-section {
    background: #E6E7E8;
}

@media (min-width: 1200px) {
    .applications-section {
        padding: 130px 0 150px;
    }
}

.application-item {
    margin-bottom: 30px;
    align-items: center;
    background-color: var(--color-fff);
}

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

.app-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.app-content p {
    margin-bottom: 30px !important;
}

.app-image {
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.app-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.application-info {
    padding: 40px 20px 0;
}

@media (min-width: 768px) {
    .application-info {
        padding: 50px;
    }
}

@media (min-width: 1200px) {
    .application-info {
        padding: 80px;
    }
}

.application-item .col-md-6 {
    padding-left: 0;
    padding-right: 0;
}

/* Statistics Section */
.stats-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

@media (min-width: 992px) {
    .stats-section {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) {
    .stats-section {
        padding: 150px 0;
    }
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'PingFang SC' !important;
    font-size: 5.25rem;
    font-weight: 400;
    color: var(--color-main);
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'PingFang SC' !important;
    font-size: 1.25rem;
    color: var(--color-sec);
    font-weight: 600;
}

/* Exhibition Section */
.exhibition-section {
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.exhibition-title {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 2;
}

@media (min-width: 992px) {
    .exhibition-title {
        top: 60px;
    }
}

.exhibition-title .section-title {
    color: var(--color-fff);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.45);
}

/* .exhibition-swiper {
    min-height: 50vh;
    height: 50vh;
}

@media (min-width: 768px) {
    .exhibition-swiper {
        min-height: 80vh;
        height: 80vh;
    }
} */

.exhibition-swiper .swiper-slide {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.exhibition-swiper .swiper-slide:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.exhibition-swiper img {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

.exhibition-swiper .swiper-slide:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.exhibition-swiper .swiper-slide {
    width: 878px;
    transition-timing-function: linear;
}

@media only screen and (max-width:1200px) {
    .exhibition-swiper .swiper-slide {
        width: 670px;
    }
}

@media only screen and (max-width:980px) {
    .exhibition-swiper .swiper-slide {
        width: 471px;
    }
}

@media only screen and (max-height:480px) {
    .exhibition-swiper .swiper-slide {
        width: 471px;
    }
}

.swiper-slide img {
    width: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.swiper-slide .title {
    position: absolute;
    transform: rotate(90deg);
    transform-origin: left top;
    left: -3px;
    font-size: 11px;
    color: rgb(102, 102, 102);
}

.exhibition-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    transition: all 0.4s ease;
}

.exhibition-swiper .swiper-slide:hover .exhibition-text {
    background: linear-gradient(transparent, rgba(119, 34, 103, 0.8));
}

.exhibition-text h6 {
    color: var(--color-fff);
    font-size: var(--fs-16);
    line-height: 1.4;
    text-shadow: 4px 2px 5px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.exhibition-swiper .swiper-slide:hover .exhibition-text h6 {
    transform: translateY(-3px);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

@media (min-width: 992px) {
    .exhibition-text {
        padding: 20px 50px;
    }

    .exhibition-text h6 {
        font-size: var(--fs-24);
    }
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-weight: bold;
    color: var(--color-fff);
    text-shadow: 4px 2px 5px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--color-main);
    transform: scale(1.2);
}

/* Exhibition Slide Active State */
.exhibition-swiper .swiper-slide-active {
    z-index: 1;
}

/* Exhibition Overlay Effect */
.exhibition-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: all 0.4s ease;
    z-index: 1;
}

.exhibition-swiper .swiper-slide:hover::before {
    background: rgba(119, 34, 103, 0.1);
}

/* Exhibition Click Animation */
.exhibition-swiper .swiper-slide.slide-clicked {
    transform: translateY(-10px) scale(0.98);
    transition: all 0.2s ease;
}

/* Exhibition Hover State Class */
.exhibition-swiper .swiper-slide.slide-hovered {
    /* transform: translateY(-10px); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.exhibition-swiper .swiper-slide.slide-hovered img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.exhibition-swiper .swiper-slide.slide-hovered .exhibition-text {
    background: linear-gradient(transparent, rgba(119, 34, 103, 0.8));
    /* transform: translateY(-5px); */
}

.exhibition-swiper .swiper-slide.slide-hovered .exhibition-text h6 {
    /* transform: translateY(-3px); */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.footer {
    background: #D1D3D4;
    color: var(--color-sec);
    padding: 140px 0 50px;
    font-family: 'PingFang SC', sans-serif !important;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-nav ul {
    margin: 0;
    padding: 0;
}

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

.footer-nav ul li a {
    color: var(--color-sec);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--color-main);
}

.footer-contact h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-sec);
}

.contact-info p {
    margin-bottom: 8px;
    color: var(--color-sec);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.footer-social {
    margin-top: 60px;
    padding-top: 10px;
    display: flex;
    justify-content: flex-start;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-sec);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.social-icon:hover {
    color: var(--color-main);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: left;
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: var(--color-sec);
    opacity: 0.8;
}

/* Footer Responsive Design */
@media (max-width: 991px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-nav {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-contact {
        text-align: center;
        margin-bottom: 30px;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-contact h4 {
        font-size: 1.3rem;
    }

    .contact-info .phone {
        font-size: 16px;
    }

    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 0;
    }
}

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

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

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

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

    .application-item {
        margin-bottom: 30px;
    }

    .app-title {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-main);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.back-to-top:hover {
    background: var(--color-sec);
    transform: translateY(-5px);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(233, 30, 99, 0.3);
    border-radius: 50%;
    border-top-color: #333;
    animation: spin 1s ease-in-out infinite;
}

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

/* Form Error States */
input.error,
textarea.error {
    border-color: #333 !important;
    background: rgba(233, 30, 99, 0.05);
}

/* Hover Effects */
.content-box,
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

/* Additional Responsive Adjustments */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

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

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

/* Navigation Styles */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff !important;
}

/* PC Navigation */
.pc-nav .navbar-nav {
    gap: 10px;
}

.pc-nav .nav-link {
    color: var(--color-000);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 10px !important;
    transition: all 0.3s ease;
    position: relative;
}

@media (min-width: 1200px) {
    .pc-nav .nav-link {
        font-size: 16px;
    }
}

@media (min-width: 1600px) {
    .pc-nav .nav-link {
        font-size: 18px;
    }
}

.pc-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-main);
    transition: width 0.3s ease;
}

.pc-nav .nav-link:hover::after,
.pc-nav .nav-link.active::after {
    width: 100% !important;
}

.pc-nav .nav-item:last-child .nav-link {
    padding-right: 0 !important;
}

/* Mobile Navigation Toggle */
.navbar-toggler {
    border: none;
    padding: 5px 10px;
    background-color: var(--color-main);
    margin-left: 15px;
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation (Offcanvas) */
.offcanvas {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    background-color: var(--color-fff);
}

.offcanvas-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
}

.logo-img-mobile {
    height: 65px;
    width: auto;
}

.offcanvas-body {
    padding: 30px 20px;
}

.offcanvas .navbar-nav {
    gap: 5px;
}

.offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.offcanvas .nav-link:hover {
    color: #fff !important;
    background: rgba(233, 30, 99, 0.1);
    border-left-color: #333;
    padding-left: 25px !important;
}

.offcanvas .nav-link.active {
    color: #fff !important;
    background: rgba(233, 30, 99, 0.2);
    border-left-color: var(--color-fff);
}

/* Hide/Show Navigation based on screen size */
@media (min-width: 992px) {
    .mobile-nav {
        display: none !important;
    }

    .pc-nav {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .pc-nav {
        display: none !important;
    }

    .mobile-nav {
        display: block !important;
    }

    .navbar-toggler.mobile-nav {
        display: inline-block !important;
    }
}

/* Adjust Hero Section for Fixed Navbar */
/* .hero-section {
    padding-top: 80px;
} */

/* Smooth Scroll Offset for Fixed Navbar */
section {
    scroll-margin-top: 80px;
}


.info-content1 p {
    color: #555;
    text-align: center;
}

.video-section {
    background-color: var(--color-main);
}

@media (min-width: 1600px) {
    .video-section {
        padding: 150px 0;
    }
}

.video-box {
    overflow: hidden;
    height: 380px;
}

.video-box video,
.video-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 7680px) {
    .video-box {
        height: 450px;
    }
}

@media (min-width: 1200px) {
    .video-box {
        height: 600px;
    }
}

/* Augmented Reality Section */
.aug-section {
    background: #e8e9ea;
    position: relative;
}

@media (min-width: 1200px) {
    .aug-section {
        padding: 150px 0;
    }
}

.aug-main-content {
    padding-right: 40px;
}

.big-main-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 40px;
    line-height: 1.2;
}

.aug-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.aug-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aug-image-wrapper:hover .aug-main-image {
    transform: scale(1.02);
}

.aug-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 20px;
}

.aug-feature-card {
    background: #F1F2F2;
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: none;
}

.aug-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: #9e9e9e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    background-size: 100%;
}

.feature-content {
    margin-left: 40px;
}

.feature-title {
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1.25rem;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .aug-section {
        padding: 60px 0;
    }
    
    .aug-main-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .big-main-title {
        font-size: 2.5rem;
    }
    
    .aug-features {
        padding-left: 0;
        gap: 35px;
    }
    
    .feature-icon {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 0 auto 20px;
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .feature-content {
        margin-left: 0;
        text-align: center;
    }
    
    .aug-feature-card {
        padding: 25px;
        text-align: center;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .aug-section {
        padding: 50px 0;
    }
    
    .big-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .aug-features {
        gap: 25px;
    }
    
    .aug-feature-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    .big-main-title {
        font-size: 1.7rem;
    }
    
    .aug-feature-card {
        padding: 18px;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

/* Award Section */
.award-section {
    background: var(--color-fff);
}

@media (win-width: 1200px) {
    .award-section {
        padding: 150px 0;
    }
}

.certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

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

.cert-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.cert-logo:hover {
    filter: grayscale(50%);
}

.award-item {
    background: #fff;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    padding: 20px;
}

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

.award-image {
    margin-bottom: 20px;
    overflow: hidden;
}

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

.award-item:hover .award-img {
    transform: scale(1.05);
}

.award-info {
    text-align: center;
}

.award-title {
    font-family: 'PingFang SC', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    margin: 0;
    text-align: start;
}

/* Tablet and Mobile Responsive */
@media (max-width: 991px) {
    .award-section {
        padding: 60px 0;
    }
    
    .certification-logos {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .award-section {
        padding: 50px 0;
    }
    
    .certification-logos {
        gap: 20px;
    }
    
    .cert-logo {
        height: 100px;
    }
    
    /* .award-img {
        height: 150px;
    } */
    
    .award-title {
        font-size: 0.9rem;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    .award-section {
        padding: 40px 0;
    }
    
    .certification-logos {
        /* flex-direction: column; */
        gap: 15px;
    }
    
    /* .cert-logo {
        height: 80px;
    } */
    
    /* .award-img {
        height: 120px;
    } */
    
    .award-title {
        font-size: 0.85rem;
    }
}
/* AR Section */
.ar-section {
    background: var(--color-fff);
}

@media (min-width: 1600px) {
    .ar-section {
        padding: 150px 0;
    }
}

.ar-main-content {
    margin-bottom: 60px;
}

.ar-text-content {
    padding-right: 30px;
}

.ar-main-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 30px;
    line-height: 1.2;
}

.ar-main-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ar-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ar-main-image:hover img {
    transform: scale(1.02);
}

.ar-feature-item {
    background: #fff;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.ar-feature-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.ar-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ar-feature-item:hover .ar-feature-image img {
    transform: scale(1.05);
}

.ar-feature-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ar-feature-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
}

.ar-feature-description {
    flex: 1;
}

.ar-feature-description p {
    font-size: 1rem;
    text-align: center;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    
    .ar-main-content {
        margin-bottom: 50px;
    }
    
    .ar-text-content {
        padding-right: 0;
        text-align: center;
    }
    
    .ar-main-title {
        font-size: 2.5rem;
    }
    
    .ar-feature-image {
        height: auto;
    }
    
    .ar-feature-content {
        padding: 20px;
    }
    
    .ar-feature-title {
        font-size: 1.3rem;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    
    .ar-main-content {
        margin-bottom: 40px;
    }
    
    .ar-main-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    /* .ar-feature-image {
        height: 300px;
    } */
    
    .ar-feature-content {
        padding: 18px;
    }
    
    .ar-feature-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    
    .ar-main-title {
        font-size: 1.8rem;
    }
    
    /* .ar-feature-image {
        height: 250px;
    } */
    
    .ar-feature-content {
        padding: 15px;
    }
    
    .ar-feature-title {
        font-size: 1.1rem;
    }
}
/* Rehabilitation Training Section */
.rehab-training-section {
    background: #fff;
}

@media (min-width: 1600px) {
    .rehab-training-section {
        padding: 150px 0;
    }
}

.rehab-intro-content {
    text-align: center;
    margin-bottom: 60px;
}

.rehab-intro-text {
    margin: 0 auto 30px;
}

.rehab-intro-text:last-child {
    margin-bottom: 0;
}

.rehab-intro-text p {
    font-size: 1.75rem;
    font-family: 'Montserrat';
    color: var(--color-sec);
    text-align: center;
}

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

.rehab-section-title .section-title {
    color: var(--color-main);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.rehab-category-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.rehab-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-main);
}

.category-images {
    margin-bottom: 10px;
}

.category-image-grid {
    height: 140px;
    overflow: hidden;
}

.category-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

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

.rehab-category-item:hover .category-img {
    transform: scale(1.05);
}

.category-content {
    flex: 1;
    text-align: center;
    padding: 20px 30px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.category-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-000);
    margin-bottom: 0;
}

.category-title {
    font-family: 'PingFang SC';
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-sec);
    margin-bottom: 0;
}

.category-description {
    flex: 1;
}

.category-description p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-sec);
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .rehab-intro-content {
        margin-bottom: 50px;
    }
    
    .rehab-section-title {
        margin-bottom: 40px;
    }
    
    .rehab-section-title .section-title {
        font-size: 2.2rem;
    }
    
    .category-image-grid {
        height: 240px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }

    .rehab-intro-text p {
        font-size: 1.5rem;
    }

    .rehab-body {
        flex-wrap: wrap;
    }

}

/* Mobile Responsive */
@media (max-width: 767px) {
    .rehab-intro-content {
        margin-bottom: 40px;
    }
    
    .rehab-intro-text {
        margin-bottom: 25px;
    }
    
    .rehab-section-title {
        margin-bottom: 35px;
    }
    
    .rehab-section-title .section-title {
        font-size: 1.8rem;
    }
    
    .rehab-category-item {
        padding: 18px;
        border-radius: 12px;
    }
    
    .category-image-grid {
        height: auto;
    }

    .category-image-grid img {
        object-fit: contain;
    }
    
    .category-title {
        font-size: 1.2rem;
        /* margin-bottom: 12px; */
    }
    
    .category-description p {
        font-size: 0.85rem;
    }

    .rehab-intro-text p {
        font-size: 1.25rem;
    }

    .category-content {
        padding: 20px;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    .rehab-section-title .section-title {
        font-size: 1.6rem;
    }
    
    .rehab-category-item {
        padding: 15px;
    }
    
    /* .category-image-grid {
        height: 70px;
    } */
    
    .category-number {
        font-size: 1.1rem;
    }
    
    .category-title {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .category-description p {
        font-size: 0.8rem;
    }
}
/* Event Section */
.event-section {
    background: var(--color-fff);
}

@media (min-width: 1600px) {
    .event-section {
        padding: 150px 0;
    }
}

.event-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

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

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

.event-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-item:hover .event-image img {
    transform: scale(1.02);
}

.event-content {
    padding-left: 30px;
}

.event-date {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.event-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 20px;
    line-height: 1.3;
}

.event-description {
    margin-bottom: 25px;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-btn {
    display: inline-flex;
    align-items: center;
    background: var(--color-main);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
}

.event-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.event-btn:hover {
    background: #5a1a4f;
    color: #fff;
    transform: translateX(5px);
}

.event-btn:hover::after {
    transform: translateX(3px);
}

.event-link {
    font-size: 0.9rem;
    color: #666;
    word-break: break-all;
    line-height: 1.4;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .event-section {
        padding: 60px 0;
    }
    
    .event-item {
        padding: 30px;
        margin-bottom: 50px;
    }
    
    .event-content {
        padding-left: 0;
        padding-top: 20px;
    }
    
    .event-title {
        font-size: 1.8rem;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .event-section {
        padding: 50px 0;
    }
    
    .event-item {
        padding: 25px;
        margin-bottom: 40px;
        border-radius: 15px;
    }
    
    .event-content {
        padding-top: 15px;
    }
    
    .event-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .event-description {
        margin-bottom: 20px;
    }
    
    .event-actions {
        gap: 12px;
    }
    
    .event-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .event-link {
        font-size: 0.85rem;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    .event-section {
        padding: 40px 0;
    }
    
    .event-item {
        padding: 20px;
        margin-bottom: 35px;
    }
    
    .event-title {
        font-size: 1.3rem;
    }
    
    .event-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .event-link {
        font-size: 0.8rem;
    }
}
/* Contact Section */
.contact-section {
    background: #fff;
}

@media (min-width: 1200px) {
    .contact-section {
        padding-top: 80px;
        padding-bottom: 150px;
    }
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: var(--color-main);
}

.faq-list {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(119, 34, 103, 05);
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-main);
}

.faq-question span {
    flex: 1;
    margin-right: 20px;
    font-size: 1.25rem;
    font-family: 'PingFang SC';
    font-weight: 400;
}

.faq-icons {
    display: flex;
    align-items: center;
    position: relative;
    transform: translateX(-20px);
}

.faq-icons i {
    font-size: 1rem;
    color: var(--color-main);
    transition: all 0.3s ease;
    position: absolute;
}

.faq-question[aria-expanded="false"] .fa-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-question[aria-expanded="false"] .fa-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-question[aria-expanded="true"] .fa-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-question[aria-expanded="true"] .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 0 20px 0;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1.15rem;
}

/* Contact Us Section */
.contact-us-section {
    margin-top: 60px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 50px;
    text-align: center;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
}

.company-name span {
    color: var(--color-main);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--color-main);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1rem;
    width: 16px;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form */
.contact-form {
    padding: 0 20px;
    margin-top: 100px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 3px rgba(119, 34, 103, 0.1);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-container {
    display: flex;
    justify-content: space-between;
}

.submit-btn {
    background: var(--color-main);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #5a1a4f;
    transform: translateX(5px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .faq-section {
        margin-bottom: 60px;
    }
    
    .faq-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .contact-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 0;
        margin-top: 0;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .faq-section {
        margin-bottom: 50px;
    }
    
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px 0;
        font-size: 1rem;
    }
    
    .faq-question span {
        margin-right: 15px;
    }
    
    .contact-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .contact-form {
        padding: 25px 0;
        border-radius: 12px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
    }
    
    .submit-btn-container {
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .submit-btn {
        margin-top: 20px;
        padding: 24px 25px;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 1.6rem;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }
    
    .contact-form {
        padding: 20px 0;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .submit-btn-container {
        justify-content: flex-start;
    }
}
/* Contact Hero Section */
.contact-hero {
    background: var(--color-main);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0;
}

.contact-hero::after {
    display: none;
}

.contact-hero-content {
    position: static;
    width: 100%;
    height: auto;
    padding: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #fff;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-hero-subtitle:last-child {
    margin-bottom: 0;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .contact-hero {
        min-height: 350px;
        padding: 60px 0;
    }
    
    .contact-hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .contact-hero {
        min-height: 300px;
        padding: 50px 0;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    .contact-hero {
        min-height: 250px;
        padding: 40px 0;
    }
    
    .contact-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}

/* .recaptcha-box {
    max-width: 210px;
    width: 50%;
}

.recaptcha-box img {
    object-fit: contain;
    width: 100%;
    height: 100%;
} */