* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FFFFFF;
    overflow-x: hidden;
    position: relative;
}

/* Background Container */
.bg-container {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 682px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-vector {
    position: absolute;
    top: -89px;
    left: 0;
    width: 2008px;
    height: 1114px;
    background: url('../../images/backgrounds/contact-bg-vector.svg') no-repeat;
    background-size: contain;
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 32px 120px;
    background: transparent;
    margin-top: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.logo {
    width: 86px;
    height: 86px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    padding: 16px;
    cursor: pointer;
    position: relative;
}

.nav-item a,
.nav-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: #454545;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-item:hover a,
.nav-item:hover span {
    color: #CB6CE6;
}

.nav-item.active a,
.nav-item.active span {
    color: #CB6CE6;
}

.nav-item.active {
    border-bottom: 1px solid #CB6CE6;
}

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 200px;
    height: 56px;
    background: #CB6CE6;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #B85BD4;
}

.cta-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #CB6CE6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu (Sidebar) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 36px;
    color: #CB6CE6;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
}

.mobile-nav-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: #454545;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
    transition: color 0.3s ease;
}

.mobile-nav-item:hover {
    color: #CB6CE6;
}

.mobile-nav-cta {
    background: #CB6CE6;
    color: #FFFFFF !important;
    border-radius: 50px;
    padding: 16px 24px;
    text-align: center;
    margin-top: 20px;
    border: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

/* Breadcrumb and Title */
.breadcrumb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 267px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #CB6CE6;
    text-align: center;
    text-transform: uppercase;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1em;
    color: #334C57;
    text-align: center;
    margin: 0;
}

/* Hero Description */
.hero-description {
    position: relative;
    z-index: 5;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5em;
    color: #5D5D5D;
    text-align: center;
    max-width: 823px;
    margin: 33px auto 0;
}

/* Contact Info Section */
.contact-info-section {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 32px auto 0;
    padding: 0 20px;
}

.info-card {
    position: relative;
    width: 320px;
    height: 219px;
}

.card-background {
    position: absolute;
    top: 40px;
    left: 0;
    width: 320px;
    height: 179px;
    background: #FFFFFF;
    border: 1.5px solid #DEEDEF;
    border-radius: 8px;
}

.icon-wrapper {
    position: absolute;
    top: 0;
    left: 120px;
    width: 80px;
    height: 80px;
    background: #DEEDEF;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.icon-wrapper img {
    width: 36px;
    height: 36px;
}

.card-content {
    position: absolute;
    top: 95px;
    left: 23px;
    width: 274px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5em;
    color: #1B2A31;
    text-align: center;
    margin: 0;
}

.card-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #3D3D3D;
    text-align: center;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    max-width: 895px;
    margin: 148px auto 120px;
    padding: 0 20px;
    background: transparent;
}

.form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1062px;
}

.form-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #CB6CE6;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2em;
    color: #334C57;
    text-align: center;
    margin: 0;
}

.form-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    color: #5D5D5D;
    text-align: center;
    width: 100%;
    max-width: 1062px;
    margin: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1024px;
}

.form-row {
    display: flex;
    gap: 42px;
    width: 100%;
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-row .form-group {
    flex: 1;
    max-width: calc(50% - 21px);
}

.form-group-full {
    width: 100%;
    max-width: 100%;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5em;
    color: #3D3D3D;
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #3D3D3D;
    background: #FAFAFA;
    border: 1px solid #E8E8E8;
    padding: 20px 24px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input {
    height: 60px;
    border-radius: 50px;
}

.form-group textarea {
    border-radius: 24px;
    resize: vertical;
    min-height: 200px;
    padding: 24px;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #CB6CE6;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(203, 108, 230, 0.08);
}

.btn-submit {
    background: #CB6CE6;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 0 40px;
    min-width: 280px;
    height: 64px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.btn-submit:hover {
    background: #B85BD4;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(203, 108, 230, 0.3);
}

/* Footer */
.footer {
    width: 100%;
    background: #FFFFFF;
    padding: 60px 120px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1680px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #6D6D6D;
    text-decoration: none;
    padding: 12px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #CB6CE6;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: #888888;
    opacity: 0.2;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-copyright {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #CB6CE6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #CB6CE6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #B85BD4;
    text-decoration: underline;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .header {
        padding: 20px 60px;
    }

    .logo {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
    }

    .contact-info-section {
        gap: 20px;
    }

    .info-card {
        width: 280px;
        height: 200px;
    }

    .card-background {
        width: 280px;
        height: 160px;
    }

    .icon-wrapper {
        left: 100px;
    }

    .card-content {
        width: 240px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 30px;
        margin-top: 0;
    }

    .header-content {
        justify-content: space-between;
        gap: 20px;
    }

    .logo {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
    }

    .cta-link {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        flex-shrink: 0;
    }

    .page-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
        max-width: 90%;
    }

    .contact-info-section {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .info-card {
        width: 100%;
        max-width: 320px;
    }

    .card-background {
        width: 100%;
    }

    .contact-form-section {
        margin: 80px 20px;
        gap: 60px;
        padding: 0 20px;
    }

    .form-header {
        gap: 16px;
    }

    .form-title {
        font-size: 40px;
    }

    .form-description {
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 32px;
    }

    .form-row .form-group {
        width: 100%;
    }

    .btn-submit {
        width: 100%;
    }

    .footer {
        padding: 40px 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px 20px;
        margin-top: 0;
    }

    .header-content {
        justify-content: space-between;
        gap: 16px;
    }

    .logo {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .hamburger {
        display: flex !important;
        width: 32px;
        height: 24px;
        flex-shrink: 0;
    }

    .hamburger-line {
        height: 2.5px;
    }

    .mobile-menu {
        width: 85%;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .contact-form-section {
        margin: 60px 10px;
        padding: 0 10px;
    }

    .form-header {
        gap: 12px;
    }

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

    .form-description {
        font-size: 15px;
    }

    .btn-submit {
        min-width: 200px;
        height: 56px;
    }

    .footer {
        padding: 30px 16px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav a {
        width: 100%;
        text-align: center;
    }
}