/* 
* Credit Card Cash Advance Landing Page
* Main CSS File 
*/

/* ======= Base Styles ======= */
:root {
    --primary-color: #0d2e5c;
    --secondary-color: #1b76ff;
    --accent-color: #ff4757;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --gradient-primary: linear-gradient(135deg, #0d2e5c 0%, #1b76ff 100%);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-color);
}

/* ======= Buttons ======= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.btn:hover::after {
    left: 100%;
}

.btn i {
    margin-right: 8px;
    font-size: 0.95em;
}

.btn-primary {
    background-color: #e74c3c;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary i {
    margin-right: 8px;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.btn-secondary i {
    margin-left: 8px;
    margin-right: 0;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: #0f3460;
    border-color: transparent;
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: #e03345;
}

/* ======= Header ======= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
    overflow: visible;
}

.header.sticky {
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.logo span {
    color: var(--secondary-color);
}

.navigation ul {
    display: flex;
}

.navigation ul li {
    margin-left: 30px;
}

.navigation ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.navigation ul li a:hover::after,
.navigation ul li a.active::after {
    width: 100%;
}

.hotline a {
    display: flex;
    align-items: center;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.hotline a i {
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

.hotline a:hover {
    background-color: var(--primary-color);
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 5px;
    border-radius: 2px;
    transition: var(--transition);
}

/* ======= Hero Section ======= */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(22, 33, 62, 0.7), rgba(15, 52, 96, 0.7), rgba(83, 52, 131, 0.7)), url('../images/trangchu.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

/* Responsive image tuvan */
.tuvan-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0;
}

.tuvan-image {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    transform: scale(1.3);
    transform-origin: center;
}

@media (max-width: 768px) {
    .tuvan-image {
        max-width: 100%;
        transform: scale(1.0);
        margin: 0 auto;
    }
    
    .tuvan-wrapper {
        padding: 30px 0;
    }
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeIn 0.8s ease-out;
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: center;
    animation: slideInRight 0.8s ease-out;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Hero Features */
.hero-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.feature-item i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.feature-item span {
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Trust Badges */
.hero-trust {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.trust-badge i {
    color: var(--accent-color);
    margin-right: 6px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    filter: contrast(1.05);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.fee-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #ff7675 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 2;
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Supported Banks */
.supported-banks {
    margin-top: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    padding: 5px 0;
}

.bank-logo {
    height: 40px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bank-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.bank-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ======= Services Section ======= */
.services {
    background-color: var(--light-color);
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
    background-color: rgba(27, 118, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    transition: var(--transition);
}

.service-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.service-item:hover .service-icon i {
    background-color: var(--secondary-color);
    color: white;
    transform: rotateY(360deg);
    transition: transform 0.8s ease, background-color 0.3s ease, color 0.3s ease;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ======= Benefits Section ======= */
.benefits-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 10px;
}

.benefit-card {
    background-color: #fff;
    overflow: visible;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card-image {
    overflow: visible;
    margin: -5px;
    padding: 5px;
}

.benefit-card-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
    border-radius: 5px;
}

.benefit-card:hover .benefit-card-image img {
    transform: scale(1.05);
}

.benefit-card-content {
    padding: 20px 5px 5px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.benefit-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-card-content p {
    margin-bottom: 0;
    flex-grow: 1;
}

.benefit-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.benefit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-content p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* ======= Branches Section ======= */
.branches {
    background-color: var(--light-color);
}

/* ======= Quick Contact Section ======= */
.quick-contact {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.quick-contact-wrapper {
    width: 100%;
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.quick-contact-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.quick-contact-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.quick-contact-left {
    flex: 1.5;
}

.quick-contact-right {
    flex: 1;
}

.quick-contact-left > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.quick-contact-left > p span {
    color: var(--primary-color);
    font-weight: 600;
}

.quick-contact-feature {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.quick-contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.quick-contact-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.quick-contact-text h3 {
    color: #0073cc;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.quick-contact-text p {
    color: #555;
    line-height: 1.5;
}

.quick-contact-form {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-contact-form input,
.quick-contact-form select,
.quick-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-select {
    position: relative;
}

.form-select select {
    appearance: none;
    padding-right: 30px;
}

.form-select i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}

.quick-contact-btn {
    background-color: #f7931e;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 14px 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

.quick-contact-btn:hover {
    background-color: var(--primary-color);
}

.contact-time {
    text-align: center;
    margin-top: 15px;
    color: #555;
    font-weight: 500;
}

.branches-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.branch-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    transition: var(--transition);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.branch-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(27, 118, 255, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.branch-icon i {
    font-size: 2rem;
}

.branch-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.branch-content p {
    margin-bottom: 8px;
}

.branch-content p:last-child {
    margin-bottom: 0;
}

.branch-content p i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ======= Register Section ======= */
.register {
    background-color: var(--light-color);
}

.register-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.register-left {
    flex: 1;
    padding: 50px;
    background-color: var(--primary-color);
    color: #fff;
}

.register-left .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.register-left .section-header h2 {
    color: #fff;
}

.register-left .section-header h2::after {
    left: 0;
    transform: none;
    background-color: var(--accent-color);
}

.register-left .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.register-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.info-item p, .info-item p a {
    color: rgba(255, 255, 255, 0.9);
}

.info-item p a:hover {
    color: var(--accent-color);
}

.register-right {
    flex: 1;
    padding: 50px;
}

.register-form .form-group {
    margin-bottom: 20px;
}

.register-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.register-form input,
.register-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.register-form input:focus,
.register-form select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(27, 118, 255, 0.1);
    outline: none;
}

/* ======= Testimonials Section ======= */
.testimonials {
    background-color: #fff;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    position: relative;
    padding-left: 25px;
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: 0;
    top: -15px;
    color: var(--secondary-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* ======= FAQ Section ======= */
.faq {
    background-color: var(--light-color);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-icon i {
    transition: var(--transition);
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 500px;
}

/* ======= Footer ======= */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 70px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer .logo a {
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-cards {
    margin-top: 15px;
}

.credit-card-types {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

/* ======= Floating Contact Buttons ======= */
.floating-contacts {
    position: fixed;
    bottom: 20px;
    top: unset;
    right: 20px;
    transform: none;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.floating-contact {
    display: flex;
    align-items: center;
    position: relative;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    transition: var(--transition);
    text-decoration: none;
}

.phone-btn {
    background-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
}

.email-btn {
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
    padding: 0;
}

.email-avatar {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.zalo-btn {
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0;
    border-radius: 50%;
}

.zalo-avatar {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    filter: none;
    border-radius: 50%;
}

.zalo-btn:hover .zalo-avatar {
    transform: scale(1.1);
}

.contact-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.phone-btn:hover {
    background-color: var(--secondary-color);
}

.email-btn:hover {
    background-color: #f5f5ff;
}

.email-btn:hover .email-avatar {
    transform: scale(1.1);
}

.zalo-btn:hover {
    background-color: #f5f5ff;
}

.contact-info {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    margin-right: 10px;
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition);
    z-index: 1;
    position: absolute;
    right: 70px;
    white-space: nowrap;
    width: max-content;
    bottom: 0;
}

.floating-contact:hover .contact-info {
    opacity: 1;
    transform: translateX(0);
}

.contact-info p {
    margin-bottom: 0;
    white-space: nowrap;
}

/* Pulse Animation */
.pulse {
    position: relative;
}

.pulse::before, 
.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}

.phone-contact .pulse::before,
.phone-contact .pulse::after {
    background-color: var(--accent-color);
}

.email-contact .pulse::before,
.email-contact .pulse::after {
    background-color: #4CAF50;
}

.zalo-contact .pulse::before,
.zalo-contact .pulse::after {
    background-color: #0180c7;
}

.pulse::before {
    animation: pulse 2s ease-out infinite;
}

.pulse::after {
    animation: pulse 2s 1s ease-out infinite;
}

/* Bounce Animation */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ======= Back To Top Button ======= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ======= Responsive Styles ======= */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .navigation.active {
        right: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        align-items: center;
    }
    
    .navigation ul li {
        margin: 15px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .benefit-card {
        margin-bottom: 10px;
    }
    
    .benefit-card-image img {
        height: 180px;
    }
    
    .benefit-card-content {
        padding: 18px 15px;
    }
    
    .benefit-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .benefit-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .quick-contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .quick-contact {
        padding: 40px 0;
    }
    
    .quick-contact-header h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .quick-contact-feature {
        margin-bottom: 15px;
    }
    
    .quick-contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .quick-contact-icon i {
        font-size: 1.2rem;
    }
    
    .quick-contact-text h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .quick-contact-text p {
        font-size: 0.9rem;
    }
    
    .quick-contact-form {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .quick-contact-form input,
    .quick-contact-form select,
    .quick-contact-form textarea {
        padding: 10px;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .quick-contact-btn {
        padding: 12px 0;
    }
    
    .register-wrapper {
        flex-direction: column;
    }
    
    .register-left, 
    .register-right {
        padding: 25px 20px;
    }
    
    .register-form .form-group {
        margin-bottom: 15px;
    }
    
    .register-form input,
    .register-form select {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .register-info {
        margin-top: 20px;
    }
    
    .info-item {
        margin-bottom: 10px;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .header {
        width: 100vw;
        left: 0;
        right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .services-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .branches-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
    }
    
    .branch-card {
        padding: 20px 15px;
    }
    
    .branch-icon {
        width: 50px;
        height: 50px;
    }
    
    .branch-content h3 {
        font-size: 1.1rem;
    }
    
    .branch-content p {
        font-size: 0.9rem;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding-top: 50px;
    }
    
    .footer-col {
        padding-bottom: 30px;
    }
    
    .footer-col h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-contact p, 
    .footer-col ul li a,
    .footer-col p {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        font-size: 0.85rem;
    }
    
    .header-wrapper {
        flex-wrap: wrap;
        padding: 10px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .hotline {
        margin-right: 50px;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .hotline a {
        padding: 8px 15px;
    }
    
    .menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .navigation {
        width: 90%;
    }
    
    .navigation ul li a {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .feature-item {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .hero-trust {
        margin-top: 25px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin: 0 auto;
        max-width: 320px;
    }
    
    .fee-badge {
        top: -10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .floating-contacts {
        top: unset;
        bottom: 10px;
        right: 10px;
        transform: none;
        gap: 8px;
    }
    
    .contact-btn {
        width: 45px;
        height: 45px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    }
    
    .contact-btn i, 
    .zalo-avatar {
        font-size: 1.1rem;
        width: 25px;
        height: 25px;
    }
    
    .contact-info {
        padding: 6px 12px;
        font-size: 0.85rem;
        right: 55px;
    }
    
    .floating-contact:hover .contact-info {
        transform: translateX(0);
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        left: 20px;
        bottom: 20px;
    }

    .service-item {
        padding: 20px 15px;
        margin: 0 5px 15px;
    }

    .service-img {
        width: 60px;
        height: 60px;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
        margin: 15px 0 10px;
    }
    
    .service-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .testimonial-item {
        padding: 20px;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .register-form .form-group {
        margin-bottom: 15px;
    }

    .register-form input,
    .register-form select,
    .btn-submit {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

.zoom-in {
    animation: zoomIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

/* ======= Gallery Section ======= */
.gallery {
    padding: 80px 0;
    background-color: #f9fafb;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 26, 60, 0.9), rgba(0, 26, 60, 0.5), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 1;
    transition: all 0.5s ease;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.5s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 26, 60, 0.95), rgba(0, 26, 60, 0.6), transparent);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(-5px);
    color: #fff;
}

/* ======= New Pricing Section ======= */
.pricing-new {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-new .section-header h2::after {
    background-color: #001a3c;
}

/* New Price Table Styles */
.price-table-container {
    margin-top: 50px;
}

.pricing-subtitle {
    color: #b80000;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.price-table-wrapper {
    margin-bottom: 50px;
    padding: 0 15px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.price-table thead {
    background: linear-gradient(135deg, #001a3c, #003366);
    color: #fff;
}

.price-table th {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table td {
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    font-weight: 500;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tr:hover td {
    background-color: #f0f7ff;
}

.price-table td:first-child {
    font-weight: 600;
    color: #001a3c;
}

/* Pricing Features Wrapper */
.pricing-features-wrapper {
    display: flex;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.pricing-image-container {
    flex: 1;
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.pricing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.pricing-image-container:hover .pricing-image {
    transform: scale(1.05);
}

.pricing-badge-large {
    position: absolute;
    top: 30px;
    right: 0;
    background: linear-gradient(135deg, #001a3c, #003366);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-small {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.badge-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff5722;
    line-height: 1;
}

.pricing-info-container {
    flex: 1.2;
    padding: 40px;
}

.pricing-title {
    font-size: 1.8rem;
    color: #001a3c;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.pricing-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #001a3c;
}

.pricing-features-new {
    margin-bottom: 30px;
}

.pricing-feature-item {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #001a3c, #003366);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-content h4 {
    font-size: 1.15rem;
    color: #001a3c;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.pricing-action {
    display: flex;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-btn-new {
    padding: 15px 40px;
    background: #001a3c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 26, 60, 0.25);
}

.pricing-btn-new:hover {
    transform: translateY(-5px);
    background: #0033a0;
    color: #fff;
}

.pricing-hotline {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.pricing-hotline i {
    width: 40px;
    height: 40px;
    background: #ff5722;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.25);
}

@media (max-width: 992px) {
    .pricing-features-wrapper {
        flex-direction: column;
    }
    
    .pricing-image-container {
        min-height: 300px;
    }
    
    .pricing-info-container {
        padding: 30px;
    }
    
    .price-table th,
    .price-table td {
        padding: 15px 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .pricing-badge-large {
        top: 20px;
        padding: 10px 20px;
    }
    
    .badge-large {
        font-size: 1.8rem;
    }
    
    .pricing-action {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th {
        padding: 15px 8px;
        font-size: 0.95rem;
    }
    
    .price-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 576px) {
    .price-table th,
    .price-table td {
        padding: 10px 5px;
        font-size: 0.8rem;
    }
    
    .pricing-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .pricing-feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

/* ======= Enhanced Footer ======= */
.footer {
    background: linear-gradient(135deg, #001a3c, #000);
    color: #fff;
    padding-top: 70px;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ff5722;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ff5722;
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ff5722;
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact p a:hover {
    color: #ff5722;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff5722;
    color: #fff;
    transform: translateY(-5px);
}

.footer-cards {
    margin-top: 20px;
}

.credit-card-types {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social-mobile {
    display: none;
}

.zalo-icon-footer {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Media Queries */
@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-container {
        gap: 20px;
    }
    
    .pricing-box.featured {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .pricing-box {
        margin-bottom: 20px;
    }
    
    .footer-wrapper {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-social-mobile {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    
    .footer-social-mobile a {
        width: 45px;
        height: 45px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .footer-social-mobile a:hover {
        background-color: #ff5722;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 200px;
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}