
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(14, 163, 223, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(14, 163, 223, 0);
    }
}

.product-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.product-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: -1;
    
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.product-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    max-width: 800px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.3s;
}

.product-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-top: 20px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.breadcrumb {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 20px;
    position: absolute;
    top: 110px;
    padding: 0px;
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards 0.1s;
}

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

.breadcrumb a:hover {
    color: #0ea3df;
}

.contact-wrap {
    display: flex;
    gap: 60px;
    margin: 50px 0px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards 0.4s;
}

.contact-left h3 {
    font-size: 34px;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.contact-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.contact-item {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.contact-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-item:hover {
    transform: translateX(8px) !important;
}

.contact-item:hover img {
    animation: iconFloat 0.6s ease;
}

.contact-item img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-item p {
    line-height: 1.7;
    font-size: 18px;
    color: #222;
    margin-left: 10px;
}

.contact-item a {
    text-decoration: none;
    color: inherit;
}

.contact-item a:hover p {
    color: #0ea3df;
}

.contact-right {
    width: 545px;
    flex-shrink: 0;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.contact-right:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.contact-right h3 {
    font-size: 30px;
    color: #111;
    margin-bottom: 32px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.form-item {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
}

.form-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.form-item label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.form-item input,
.form-item textarea {
    width: 100%;
    border: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.form-item input:focus,
.form-item textarea:focus {
    border-color: #0ea3df;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 152, 65, 0.1);
    transform: scale(1.01);
}

.form-item textarea {
    min-height: 140px;
    resize: vertical;
}

.send-btn {
    width: 100%;
    text-align: center;
    padding: 14px 30px;
    background: #f0f1f3;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.send-btn::before {
    display: none;
}

.send-btn:hover {
    background: #0ea3df;
    color: #fff;
   
}

.send-btn:active {
    transform: scale(0.97);
}

.send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.cta-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(90deg);
    animation: charReveal 0.6s ease forwards;
}
.cta-banner {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner.second {
    min-height: 450px;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
   
}



.cta-banner:hover .cta-bg {
    transform: scale(1.02);
    transition: transform 8s ease;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.cta-content {
    max-width: 920px;
    margin: 0 auto 60px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.cta-content.visible .cta-title {
    opacity: 1;
    transform: translateY(0);
}

.cta-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.cta-content.visible .cta-desc {
    opacity: 1;
    transform: translateY(0);
}
@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.fade-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .contact-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .contact-right {
        width: 100%;
    }
    
    .contact-left {
        animation: fadeInUp 0.8s ease forwards 0.4s;
    }
}

@media (max-width: 768px) {
    .contact-wrap {
        padding: 0 16px;
    }

    .contact-left h3 {
        font-size: 28px;
    }

    .contact-right h3 {
        font-size: 26px;
    }

    .contact-right {
        padding: 30px 20px;
    }

    .product-hero h1 {
        font-size: 2rem;
        animation: fadeInDown 0.6s ease forwards 0.2s;
    }
    
    .product-hero p {
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-desc {
        font-size: 14px;
    }
    
    .contact-item p {
        font-size: 16px;
    }
}

.loading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0ea3df, #069841);
    z-index: 9999;
    transition: width 0.3s ease;
    pointer-events: none;
}

@media (max-width: 992px) {
    .product-hero {
        padding: 100px 0 60px;
        min-height: 280px;
        background-position: center;
    }

    .product-hero::after {
        background-position: center;
    }

    .breadcrumb {
        position: relative;
        top: 0;
        margin-top: 0;
        margin-bottom: 12px;
        margin-top: 30px;
    }

    .product-hero h1 {
        font-size: 2.4rem;
    }

    .product-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 80px 0 50px;
        min-height: 240px;
        background-position: center;
        background-size: cover;
    }

    .product-hero::after {
        background-position: center;
        background-size: cover;
    }

    .product-hero h1 {
        font-size: 2rem;
        animation: fadeInDown 0.6s ease forwards 0.2s;
    }

    .product-hero p {
        font-size: 0.95rem;
        margin-top: 12px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 60px 0 40px;
        min-height: 200px;
        background-position: center;
        background-size: cover;
    }

    .product-hero::after {
        background-position: center;
        background-size: cover;
    }

    .product-hero h1 {
        font-size: 1.6rem;
    }

    .product-hero p {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .breadcrumb {
        font-size: 12px;
        margin-bottom: 8px;
    }
}

@media (max-width: 380px) {
    .product-hero {
        padding: 50px 0 30px;
        min-height: 160px;
    }

    .product-hero h1 {
        font-size: 1.3rem;
    }

    .product-hero p {
        font-size: 0.78rem;
    }

    .breadcrumb {
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .cta-banner {
        padding: 60px 0;
        min-height: 350px;
    }

    .cta-banner.second {
        min-height: 350px;
    }

    .cta-bg {
        background-position: center;
        background-size: cover;
    }

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

    .cta-desc {
        font-size: 16px;
    }

    .cta-content {
        margin: 0 auto 40px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 50px 0;
        min-height: 300px;
    }

    .cta-banner.second {
        min-height: 300px;
    }

    .cta-bg {
        background-position: center;
        background-size: cover;
    }

    .cta-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .cta-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .cta-content {
        margin: 0 auto 30px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 35px 0;
        min-height: 250px;
    }

    .cta-banner.second {
        min-height: 250px;
    }

    .cta-bg {
        background-position: center;
        background-size: cover;
    }

    .cta-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .cta-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .cta-content {
        margin: 0 auto 20px;
        padding: 0 12px;
    }
}

@media (max-width: 380px) {
    .cta-banner {
        padding: 25px 0;
        min-height: 200px;
    }

    .cta-banner.second {
        min-height: 200px;
    }

    .cta-bg {
        background-position: center;
        background-size: cover;
    }

    .cta-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .cta-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .cta-content {
        margin: 0 auto 15px;
        padding: 0 10px;
    }
}


@media (max-width: 768px) and (orientation: portrait) {
    .cta-bg {
        background-position: center;
        background-size: cover;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    .cta-bg {
        background-position: center;
        background-size: cover;
    }
}