@import url('./header.css');
@import url('./banner.css');
@import url('./about-us.css');
@import url('./service.css');
@import url('./stats.css');
@import url('./partner.css');
@import url('./guide.css');
@import url('./blog.css');
@import url('./blog_detail.css');
@import url('./contact.css');
@import url('./footer.css');
@import url('./pagination.css');
@import url('./toastr.css');
@import url('./modal_banner.css');

:root {
  --main-red-color: #A61E2E;
  --main-pink-color: #ffe0e6;
  --main-orange-color: #E3A245;
  --main-gradient: linear-gradient(
    90deg,
    var(--main-red-color),
    var(--main-orange-color)
  );

  --border-color: #f1f1f1;
  --background-gray-color: #f1f1f1;
  --background-sidebar-color: #111827;

  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #888888;
  --blue-color: #3498db;

  --success-color: #10b981;
  --danger-color: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 35px;
    font-weight: 800;
    color: var(--main-red-color);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
    text-transform: uppercase;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--white-color);
    color: var(--main-red-color);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    background: var(--danger-color); 
    color: var(--white-color);
    transform: scale(1.05);
}

input {
    font-family: inherit;
}

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: none;
}

.animate-show {
    opacity: 0;
    transform: translateY(40px);
}
.animate-show.show {
    animation: zoomFade 0.7s ease forwards;
}

@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(40px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--main-red-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 10000;
    border: none;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.section {
    padding: 40px 100px;
    overflow: hidden;
    scroll-margin-top: 60px;
}

@media (max-width: 1024px) {
    .section {
        padding: 30px;
    }

    .btn-primary:hover {
        transform: none;
        background: var(--white-color);
        color: var(--danger-color);
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .section {
        padding: 30px 15px;
    }

    .btn-primary{
        padding: 10px 20px;
        font-size: 14px;
    }

    .section-title {
        font-size: 25px;
    }
}