:root {
    --text-dark: #333;
    --text-light: #555;
    --bg-light: #ffffff;
    --footer-bg: #B4A6A6;
    --footer-bottom-bg: #453D3D;
    --nav-active-color: #B4A6A6;
    --form-bg: #e9e9e9;
    --button-bg: #cecac7;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background-color: var(--bg-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

.desktop-nav a.current {
    color: var(--nav-active-color);
}

footer {
    color: var(--text-dark);
}

.footer-main {
    background-color: var(--footer-bg);
    padding: 50px 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 0 20px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.footer-column.social-column a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: right;
}

.footer-column.social-column i {
    font-size: 1.5rem;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.footer-bottom {
    background-color: var(--footer-bottom-bg);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

.contact-main {
    padding: 80px 0;
}

.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.payment-section {
    flex: 1;
    text-align: center;
}

.payment-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.payment-section p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 350px;
    margin: 20px auto 30px auto;
}

.payment-button-link {
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.pay-btn {
    position: relative;
    padding: 12px 24px;
    font-size: 16px;
    background: var(--button-bg);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #bcaea9;
}

.icon-container {
    position: relative;
    width: 24px;
    height: 24px;
}

.icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    color: #333;
    opacity: 0;
    visibility: hidden;
}

.default-icon {
    opacity: 1;
    visibility: visible;
}

.pay-btn:hover .icon {
    animation: none;
}

.pay-btn:hover .wallet-icon {
    opacity: 0;
    visibility: hidden;
}

.pay-btn:hover .card-icon {
    animation: iconRotate 2.5s infinite;
    animation-delay: 0s;
}

.pay-btn:hover .payment-icon {
    animation: iconRotate 2.5s infinite;
    animation-delay: 0.5s;
}

.pay-btn:hover .dollar-icon {
    animation: iconRotate 2.5s infinite;
    animation-delay: 1s;
}

.pay-btn:hover .check-icon {
    animation: iconRotate 2.5s infinite;
    animation-delay: 1.5s;
}

.pay-btn:active .icon {
    animation: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pay-btn:active .check-icon {
    animation: checkmarkAppear 0.6s ease forwards;
    visibility: visible;
}

.btn-text {
    font-weight: 600;
    font-family: var(--font-primary);
}

@keyframes iconRotate {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.5);
    }

    5% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    15% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    20% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.5);
    }

    100% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.5);
    }
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.form-section {
    flex: 1;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 20px;
    background-color: var(--form-bg);
    font-family: var(--font-primary);
    font-size: 1rem;
}

#contact-form textarea {
    height: 150px;
    resize: none;
}

#contact-form button {
    padding: 20px;
    border: none;
    border-radius: 20px;
    background-color: var(--button-bg);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: #bcaea9;
}

.form-status {
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

.mobile-logo,
.hamburger-menu,
.mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .payment-section {
        order: 2;
        margin-top: 50px;
    }

    .form-section {
        order: 1;
        width: 100%;
    }

    .desktop-nav,
    .logo {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-logo{
        display: block;
    }

    .mobile-logo-icon {
        width: 40px;
        height: 40px;
        display: flex;
    }

    .hamburger-menu {
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
    }

    .hamburger-menu .bar {
        width: 30px;
        height: 3px;
        background-color: var(--text-dark);
        border-radius: 5px;
    }

    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
        display: block;
    }

    .mobile-nav ul {
        list-style: none;
        flex-direction: column;
        width: 100%;
    }

    .mobile-nav li {
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .mobile-nav a {
        display: block;
        padding: 20px;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
    }

    .mobile-nav a.current {
        background-color: #f7f7f7;
        color: var(--text-dark);
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-column {
        width: 100%;
        max-width: none;
    }

    .footer-column p {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .footer-column.social-column {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column.social-column a {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }
}