@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.25vw 4.75vw;
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
    height: 10vh;
    box-shadow: 0 0.68vw 4.83vw 0 #a2a2a2;
    gap: 0.625vw;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    margin: 0;
    position: relative;
}

.logo img {
    height: 7vh;
}

.nav-links {
    display: flex;
    gap: 3.25vw;
}

.nav-links a {
    text-decoration: none;
    color: #808080;
    font-size: 1.25vw;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a.active {
    color: #000;
}

.contact-us {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    text-decoration: none;
    color: #000;
    font-size: 1.25vw;
}

.contact-us .icon {
    width: 1.56vw;
    height: 2.5vh;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.nav-links .contact-us {
    display: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    text-decoration: none;
    color: #808080;
    font-size: 1.25vw;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3vw;
}

.dropdown-toggle:hover {
    color: #000;
}

.dropdown-toggle.active {
    color: #000;
}

.dropdown-arrow {
    width: 1vw;
    height: 1vw;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(70% + 0.5vh);
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1vh 0;
    z-index: 1001;
}

.dropdown-menu a {
    display: block;
    padding: 1.2vh 1.5vw;
    text-decoration: none;
    color: #808080;
    font-size: 1.15vw;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #000;
    padding-left: 2vw;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1vw;
    }

    .nav-links a {
        font-size: 1.5vw;
    }

    .contact-us {
        font-size: 1.5vw;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 4vw 6vw !important;
        height: 12vh !important;
        justify-content: center !important;
        position: relative !important;
        overflow: visible !important;
    }

    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .logo img {
        height: 6vh !important;
    }

    .nav-links {
        position: fixed !important;
        top: 12vh !important;
        left: -100% !important;
        width: 100vw !important;
        height: calc(100vh - 12vh) !important;
        background-color: #fff !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 5vh !important;
        gap: 4vh !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        overflow-y: auto !important;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-links a {
        font-size: 5vw !important;
        padding: 2vh 0 !important;
        width: 80% !important;
        text-align: center !important;
        color: #808080 !important;
        transition: color 0.3s ease !important;
    }

    .dropdown {
        width: 80% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .dropdown-toggle {
        width: 100% !important;
        text-align: center !important;
        font-size: 5vw !important;
        padding: 2vh 0 !important;
        color: #808080 !important;
        justify-content: center !important;
    }

    .dropdown-arrow {
        width: 4vw !important;
        height: 4vw !important;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background-color: transparent !important;
        padding: 0 !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
    }

    .dropdown-menu a {
        font-size: 4.5vw !important;
        padding: 1.5vh 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

    .dropdown-menu a:hover {
        padding-left: 0 !important;
        background-color: transparent !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown:hover .dropdown-menu {
        max-height: 0 !important;
    }

    .dropdown.active:hover .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown:hover .dropdown-arrow {
        transform: rotate(0deg) !important;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg) !important;
    }

    .dropdown:not(.active) .dropdown-arrow {
        transform: rotate(0deg) !important;
    }

    .nav-links a:hover {
        color: #000 !important;
    }

    .nav-links a.active {
        color: #000 !important;
    }

    .nav-links .contact-us {
        display: flex !important;
        font-size: 5vw !important;
        gap: 3vw !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .nav-links .contact-us .icon {
        width: 6vw !important;
        height: 3vh !important;
    }

    .hamburger {
        display: flex !important;
        position: absolute !important;
        right: 6vw !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
    }

    .header>.contact-us {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 3vw 5vw !important;
        height: 10vh !important;
        box-shadow: none;
    }

    .logo img {
        height: 5vh !important;
    }

    .nav-links {
        top: 10vh !important;
        height: calc(100vh - 10vh) !important;
    }

    .hamburger {
        width: 30px !important;
    }

    .hamburger span {
        width: 30px !important;
        height: 3px !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend', sans-serif;
}

html,
body {
    background: #e8ecf0;
    width: 100%;
    overflow-x: hidden;
}

.contact-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12vh 0vh 0vh 0vh;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    min-height: 80vh;
    position: relative;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 0.2vw;
    background: #c8cdd3;
    transform: translateX(-50%);
}

.contact-form-section {
    padding: 7vh 7vw;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-section h2 {
    font-size: 3vh;
    color: #1a1a1a;
    margin-bottom: 4vh;
    line-height: 1.5;
    font-weight: normal;
}

.form-group {
    margin-bottom: 2.5vh;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    margin-bottom: 2.5vh;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 2vh 2vw;
    border: none;
    background: #d8dce2;
    border-radius: 1vh;
    font-size: 1.8vh;
    font-family: 'Lexend', sans-serif;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #cfd3d9;
}

.form-group select {
    appearance: none;
    color: #999;
    background-color: #d8dce2;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 2vw center;
    padding-right: 4vw;
    cursor: pointer;
}

.form-group textarea {
    min-height: 18vh;
    resize: vertical;
    font-family: 'Lexend', sans-serif;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1.5vw;
    margin-bottom: 3vh;
    margin-top: 3vh;
}

.checkbox-group input[type="checkbox"] {
    width: 2.2vh;
    height: 2.2vh;
    min-width: 2.2vh;
    margin-top: 0.2vh;
    cursor: pointer;
    accent-color: #0d6efd;
}

.checkbox-group label {
    font-size: 1.6vh;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.submit-btn {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 2vh 6vw;
    border-radius: 1vh;
    font-size: 2vh;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 0.4vh 1vh rgba(13, 110, 253, 0.3);
}

.submit-btn:hover {
    background: #0b5ed7;
    transform: translateY(-0.2vh);
    box-shadow: 0 0.6vh 1.5vh rgba(13, 110, 253, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8vh 8vw;
    background: transparent;
}

.illustration {
    width: 100%;
    max-width: 35vw;
    height: auto;
    margin-bottom: 4vh;
    object-fit: contain;
}

.contact-info-section h3 {
    font-size: 5vh;
    color: #1a1a1a;
    margin-bottom: 1vh;
    font-weight: normal;
}

.contact-info-section h2 {
    font-size: 7.5vh;
    color: #1a1a1a;
    margin-bottom: 3vh;
    font-weight: normal;
}

.phone-number {
    font-size: 7vh;
    color: #0d6efd;
    font-weight: normal;
    margin-bottom: 2vh;
    text-decoration: none;
    display: block;
    letter-spacing: 0.05vh;
}

.email-address {
    font-size: 3.2vh;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    font-weight: 300;
}

.email-address:hover,
.phone-number:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .contact-form-section {
        padding: 6vh 8vw;
    }

    .illustration {
        max-width: 40vw;
    }
}

@media (max-width: 768px) {
    .contact-wrapper::before {
        display: none;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 2.5vh;
    }

    .illustration {
        max-width: 90vw;
    }

    .contact-form-section h2 {
        font-size: 2.4vh;
    }

    .contact-info-section h2 {
        font-size: 3.8vh;
    }

    .phone-number {
        font-size: 3.8vh;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 5vh 6vw;
        margin-top: 0vh;
    }
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25vh 5vh 5vw 5vw;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(1, 122, 255, 0.25) 100%);
    font-family: 'Lexend', sans-serif;
    gap: 5vh;
    position: static;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    width: 100vw;
    align-items: flex-start;
    padding: 0 5vw;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.footer-section h3 {
    font-size: 1.5vw;
    margin-bottom: 1vh;
    font-weight: normal;
}

.footer-section a,
.footer-section p {
    text-decoration: none;
    color: #000;
    font-size: 1.1vw;
}

.footer-section.cta {
    border-right: 3px solid #000;
    padding-right: 2vw;
}

.footer-section.cta h2 {
    font-size: 2vw;
    color: #017AFF;
    text-align: center;
    font-weight: normal;
}

.footer-section.cta .button {
    background-color: #017AFF;
    color: #fff;
    padding: 1.5vh 2vw;
    border-radius: 0.5vw;
    text-align: center;
    font-size: 1.2vw;
    transition: transform 0.3s ease;
}

.footer-section.cta .button:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1vw;
}

.social-links img {
    width: 2vw;
    height: 2vw;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;

    padding-top: 3vh;
    width: 100%;
}

.footer-logo img {
    height: 15vh;
}

.copyright {
    font-size: 1vw;
}

@media (max-width: 768px) {
    .footer {
        padding: 15vh 8vw 8vw 8vw;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 6vh 6vw;
        padding: 0;
        width: 100%;
    }

    .footer-section.cta {
        grid-column: 1 / -1;
        border-right: none;
        padding-right: 0;
        text-align: center;
    }

    .footer-section {
        text-align: left;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 5vw;
        margin-bottom: 2vh;
    }

    .footer-section a,
    .footer-section p {
        font-size: 4vw;
    }

    .footer-section.cta h2 {
        font-size: 8vw;
    }

    .footer-section.cta .button {
        font-size: 4vw;
        padding: 2vh 6vw;
        border-radius: 2vw;
        max-width: 60vw;
        margin: 0 auto;
    }

    .social-links {
        justify-content: flex-start;
        gap: 4vw;
    }

    .social-links img {
        width: 8vw;
        height: 8vw;
    }

    .footer-logo img {
        height: 10vh;
    }

    .copyright {
        font-size: 3.5vw;
        text-align: center;
    }
}