/* General styles */
body {
    background-color: #020003;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

a {
    color: #fff;
    text-decoration: none;
}

/* Header */
.zetta-header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 64px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-nav a {
    font-weight: bold;
}

.has-dropdown > a::after {
    content: ' \\25BE';
    font-size: 0.8em;
    margin-left: 5px;
}

.btn-contact {
    background-color: #ff0033;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section */
.contact-hero {
    background-image: url('/assets/ztcrm/images/contact-us-banner.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: #fff;
}

/* Form Section */
.contact-form-section {
    padding: 50px 20px;
    background-color: #020003;
}

#contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    background-color: #fff;
    border: none;
    color: #000;
    padding: 15px;
    border-radius: 0;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.custom-checkbox label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
}

.custom-checkbox input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #e50000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.btn-submit {
    background-color: #ff0033;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

/* Connect With Us */
.connect-with-us {
    padding: 50px 20px;
    text-align: center;
}

.connect-with-us h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.connect-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.connect-item svg {
    fill: #ff0033;
    height: 40px;
    width: 40px;
}

.connect-text h3 {
    margin: 0;
    font-size: 1rem;
}

.connect-text p {
    margin: 5px 0 0;
}

/* Footer */
.zetta-footer {
    background-color: #020003;
    padding: 50px 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-letschat h4 {
    font-size: 2rem;
    margin: 0 0 20px;
}

.footer-letschat h4 span {
    color: #ff0033;
}

.footer-contact h5,
.footer-subscribe h5 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subscribe-form {
    display: flex;
}

.subscribe-form input {
    border: 1px solid #fff;
    background: transparent;
    padding: 10px;
    color: #fff;
    flex-grow: 1;
}

.subscribe-form button {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    text-transform: uppercase;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a svg {
    fill: #fff;
    height: 20px;
    width: 20px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-legal p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: flex-end;
}

.btn-legal {
    border: 1px solid #ff0033;
    padding: 5px 15px;
    border-radius: 5px;
}
