@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&family=Quicksand:wght@300;400;500;600;700&family=Roboto+Condensed&display=swap');
:root{
    --yellow: #f9d806;
    --ligth-yellow: #ffee80;
    --black: #130f40;
    --light-color: #666;
    --border: 1px solid rgba(0,0,0,.1);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

body{
    background: #f5f7fb;
    color: var(--black);
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: var(--ligth-yellow);
    color: var(--black);
    font-weight: 500;
    font-size: 1.7rem;
    cursor: pointer;
    padding: .8rem 3rem;
}

.header .cart{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.6rem;
    height: 4.6rem;
    padding: 0;
    font-size: 1.8rem;
    margin-right: 0;
    color: var(--black);
    border-radius: 50%;
    border: 1px solid rgba(19, 15, 64, 0.08);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 30px rgba(19, 15, 64, 0.08);
    position: relative;
}

.fa-cart-shopping  {
    font-size: 24px;
}

.header .cart:hover,
.fa-cart-shopping:hover{
    color: var(--black);
    background: rgba(249, 216, 6, 0.18);
    transform: translateY(-2px);
}

.btn:hover{
    background: var(--yellow);
}

.client-name {
    margin-right: 0;
    font-size: 1.4rem;
    color: var(--black);
}

.client-name--chip {
    display: inline-flex;
    align-items: center;
    min-height: 4.6rem;
    padding: 0 1.6rem;
    border-radius: 999px;
    background: rgba(19, 15, 64, 0.08);
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: none;
}

.header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    padding: 2rem 9%;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 48px rgba(19, 15, 64, 0.08);
    border-bottom: 1px solid rgba(19, 15, 64, 0.08);
}

.header .logo{
    font-size: 2.5rem;
    color: var(--black);
    font-weight: bolder;
    font-family: 'Poppins', sans-serif;
    letter-spacing: .04em;
}

.header .logo span{
    color:var(--yellow);
}

.header .navbar a{
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
}

.header .navbar {
    flex: 1; /* Chia phần còn lại của không gian dựa trên Flexbox */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    margin-left: 0;
    min-width: 0;
    gap: .2rem;
}

.header .navbar a:hover{
    color: var(--yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-shrink: 0;
}

.header-contact-group {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.quick-contact {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    min-height: 4.6rem;
    padding: 0 1.5rem;
    border-radius: 999px;
    font-size: 1.35rem;
    font-weight: 700;
    border: 1px solid rgba(19, 15, 64, 0.1);
    box-shadow: 0 12px 30px rgba(19, 15, 64, 0.08);
}

.quick-contact i {
    font-size: 1.7rem;
}

.quick-contact--phone {
    background: linear-gradient(135deg, #fff3b0 0%, #ffe169 100%);
    color: #3a2b00;
}

.quick-contact--whatsapp {
    background: linear-gradient(135deg, #27d367 0%, #16a34a 100%);
    color: #ffffff;
}

.quick-contact:hover {
    transform: translateY(-2px);
}

.header .btn{
    margin-top: 0;
}

.header #login_btn i{
    font-size: 2.5rem;
    color: var(--light-color);
    cursor: pointer;
    display: none;
}

#menu_btn{
    width: 4.6rem;
    height: 4.6rem;
    font-size: 2rem;
    color: var(--black);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 1.6rem;
    background: rgba(19, 15, 64, 0.06);
    box-shadow: 0 12px 24px rgba(19, 15, 64, 0.08);
}

.cart-len {
    color: #da1515;
    position: absolute;
    top: -.2rem;
    right: -.1rem;
    min-width: 1.9rem;
    height: 1.9rem;
    padding: 0 .4rem;
    border-radius: 999px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(218, 21, 21, 0.2);
}

.header.active{
    box-shadow: 0 18px 42px rgba(19, 15, 64, 0.12);
    padding: 2rem 9%;
}

.home{
    padding-top: 10rem;
    text-align: center;
    overflow: hidden;
}

.home h1{
    font-size: 7.5vw;
    text-transform: uppercase;
    color: var(--black);
}

.home img{
    width: 90%;
    margin: 1rem 0;
}

  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #173b6c;
  }
  
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #149ddd;
    bottom: 0;
    left: 0;
  }
  
  .section-title p {
    margin-bottom: 0;
    padding: 0 0 10px 60px;
    font-size: 14px;
    color: #173b6c;
  }
.map {
    border-radius: 0;
    display: block;
    width: 100%;
}

.contact {
    margin-top: 100px;
    padding-bottom: 40px;
}

.contact-shell {
    position: relative;
    overflow: hidden;
    padding: 4.4rem;
    border-radius: 3.2rem;
    background: linear-gradient(135deg, #0f163b 0%, #1a265f 55%, #0c0f2d 100%);
    box-shadow: 0 30px 90px rgba(11, 16, 43, 0.35);
}

.contact-shell::before {
    content: "";
    position: absolute;
    inset: auto -8rem -8rem auto;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 216, 6, 0.22) 0%, rgba(249, 216, 6, 0) 68%);
}

.contact-hero {
    position: relative;
    z-index: 1;
    max-width: 78rem;
    margin-bottom: 3.2rem;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 3.8rem;
    padding: 0 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffe27a;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-hero h2 {
    margin: 1.8rem 0 1.4rem;
    font-size: 4rem;
    line-height: 1.2;
    color: #ffffff;
}

.contact-hero p {
    max-width: 70rem;
    font-size: 1.7rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    text-transform: none;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2.4rem;
}

.contact-stat {
    padding: 2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.contact-stat strong {
    display: block;
    margin-bottom: .6rem;
    font-size: 3rem;
    color: #ffffff;
}

.contact-stat span {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.2rem;
}

.contact .info.info-card {
    padding: 2.8rem;
    background: rgba(255, 255, 255, 0.08);
    width: 100%;
    border-radius: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.contact .info.info-card h4 {
    padding: 0;
    margin-bottom: 1.4rem;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.contact .info.info-card p {
    padding: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    text-transform: none;
}

.contact-list,
.premium-list {
    list-style: none;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact .info.info-card .contact-list span {
    flex-shrink: 0;
    float: none;
    width: 4.4rem;
    height: 4.4rem;
    font-size: 1.8rem;
    color: #ffe27a;
    background: rgba(255, 255, 255, 0.12);
}

.contact-list strong {
    display: block;
    margin-bottom: .4rem;
    font-size: 1.4rem;
    color: #ffffff;
}

.contact-list a,
.contact-list p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
    text-transform: none;
}

.contact-list a:hover {
    color: #ffffff;
}

.premium-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.premium-list i {
    margin-top: .3rem;
    color: #27d367;
    font-size: 1.6rem;
}

.premium-list span {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    text-transform: none;
}

.contact-map-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 2.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(9, 12, 33, 0.28);
}

.contact-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-bottom p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
}

.contact-bottom__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.4rem;
}

.contact-bottom__links a {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.84);
    text-transform: none;
}

.contact-bottom__links a:hover {
    color: #ffe27a;
}
  
  .contact .php-email-form {
    width: 100%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }
  
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
  
  .contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }

/*media queries*/

@media(max-width:991px){
    html{
        font-size: 55%;
    }

    .header{
        flex-wrap: nowrap;
        padding: 1.8rem 2.4rem;
        gap: 1rem;
    }

    .header-actions{
        width: auto;
        margin-left: auto;
        justify-content: flex-end;
        gap: .6rem;
    }

    .quick-contact {
        padding: 0 1.3rem;
    }

    .contact-stats,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-shell {
        padding: 3rem;
    }

    .contact-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .header.active{
        padding: 1.6rem 2.4rem;
    }
    
    section{
        padding: 2rem;
    }
}

@media(max-width:768px){

    #menu_btn{
        display: inline-flex;
    }

    #menu_btn.fa-times{
        transform: rotate(180deg);
    }

    .header #login_btn i{
        display: block;
    }

    .header #login_btn .btn{
        display: none;
    }

    .header .navbar{
        position: absolute;
        top: calc(100% + .8rem);
        left: 1.4rem;
        right: 1.4rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(19, 15, 64, 0.08);
        border-radius: 2.4rem;
        box-shadow: 0 24px 44px rgba(19, 15, 64, 0.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-1rem);
    }

    .header .navbar.active{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header .navbar a{
        display: block;
        margin: 0;
        padding: 1.35rem 1.5rem;
        font-size: 1.7rem;
    }

    .header-actions {
        width: auto;
        margin-left: auto;
        gap: .45rem;
    }

    .header-contact-group {
        gap: .45rem;
    }

    .quick-contact {
        width: 4rem;
        min-height: 4rem;
        padding: 0;
        justify-content: center;
        border-radius: 1.2rem;
    }

    .quick-contact span,
    .client-name--chip {
        display: none;
    }

    .contact-shell {
        padding: 2.4rem;
        border-radius: 2.4rem;
    }

    .contact-hero h2 {
        font-size: 3rem;
    }
}
@media(max-width:450px){
    .header{
        padding: 1.2rem 1.2rem;
    }

    .header .logo{
        font-size: 2.2rem;
    }

    #menu_btn,
    .quick-contact,
    .header .cart{
        width: 3.8rem;
        height: 3.8rem;
        min-height: 3.8rem;
    }

    html{
        font-size: 50%;
    }
}

.header .navbar a{
    font-size: 1.55rem;
    margin: 0;
    padding: 1rem 1.6rem;
    color: var(--black);
    font-weight: 700;
    border-radius: 999px;
    text-transform: none;
}

.header .navbar {
    gap: .6rem;
}

.header .navbar a:hover{
    color: var(--black);
    background: rgba(19, 15, 64, 0.06);
}

.header-actions {
    gap: .8rem;
    min-width: 0;
}

.header-contact-group {
    gap: .9rem;
}

.quick-contact {
    min-height: 4.8rem;
    padding: 0 1.7rem;
    font-size: 1.3rem;
    border: 1px solid rgba(19, 15, 64, 0.08);
    box-shadow: 0 14px 30px rgba(19, 15, 64, 0.08);
    text-transform: none;
}

.quick-contact i {
    font-size: 1.6rem;
}

.header.active{
    box-shadow: 0 24px 52px rgba(19, 15, 64, 0.12);
    padding: 1.6rem 9%;
}

.header .header-actions .language-switcher {
    margin-right: .5rem;
}

.header .header-actions .language-switcher__button {
    padding: .55rem .85rem;
    font-size: 1.2rem;
}

@media(max-width:991px){
    .header-actions{
        gap: .6rem;
    }

    .quick-contact {
        padding: 0 1.3rem;
    }
}

@media(max-width:768px){
    .header{
        gap: .8rem;
    }

    .header .navbar a{
        padding: 1.35rem 1.5rem;
        font-size: 1.7rem;
        border-radius: 1.6rem;
    }

    .header-actions {
        gap: .45rem;
    }

    .header-contact-group {
        gap: .45rem;
    }

    .quick-contact {
        width: 4rem;
        min-height: 4rem;
        padding: 0;
        justify-content: center;
        border-radius: 1.2rem;
    }

    .quick-contact span,
    .client-name--chip {
        display: none;
    }

    .header .header-actions .language-switcher {
        margin-right: .25rem;
        gap: .3rem;
    }

    .header .header-actions .language-switcher__button {
        padding: .45rem .7rem;
        font-size: 1.1rem;
    }
}

@media(max-width:450px){
    .header .header-actions .language-switcher__button {
        padding: .4rem .6rem;
    }
}

.contact-grid {
    align-items: stretch;
}

.contact .info.info-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-list {
    gap: 1.4rem;
}

.contact-list li {
    align-items: center;
    gap: 1.4rem;
}

.contact .info.info-card .contact-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    min-width: 4.8rem;
    min-height: 4.8rem;
    border-radius: 1.4rem;
    line-height: 1;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact .info.info-card .contact-list span.material-symbols-outlined {
    font-size: 2rem;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.contact-list li > div {
    flex: 1;
    min-width: 0;
}

.contact-list strong {
    margin-bottom: .3rem;
}

.contact-list a,
.contact-list p {
    margin: 0;
}

.premium-list {
    gap: 1.6rem;
}

.premium-list li {
    align-items: center;
    gap: 1.2rem;
}

.premium-list i {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    flex-shrink: 0;
}

@media(max-width:768px){
    .contact-list li,
    .premium-list li {
        align-items: flex-start;
    }

    .contact .info.info-card .contact-list span {
        width: 4.4rem;
        height: 4.4rem;
        min-width: 4.4rem;
        min-height: 4.4rem;
    }
}

.contact-stat {
    min-height: 11.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

