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

body {
    font-family: "Urbanist", sans-serif;
    background: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
}

/* Hero Section*/
.hero6 {
    height: 500px;
    min-height: 400px;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("../Images/contact_us.png") center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    margin-top: 80px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: "Tenor Sans", sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Contact Section */
.contact2 {
    padding: 80px 0;
    background-color: #181818;
    color: #ffffff;
}

.contact-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

#name,
#email,
#phone,
#subject,
#message {
    background-color: #181818 !important;
}

.form-field2 .input {
    background-color: #181818 !important;
}

.contact-form2 {
    background-color: #262626;
    padding: 40px;
}

.contact-form2 h2 {
    font-size: 27px;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: "Tenor Sans", sans-serif;
    letter-spacing: 2px;
}

.contact-form2 p {
    color: #bdbdbd;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.office2 {
    padding: 20px;
    border: 1px solid rgba(51, 51, 51, 0.4);
}

.office2 h3 {
    color: #c4a962;
    margin-bottom: 15px;
    font-size: 18px;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
}

.office2 p {
    color: #bdbdbd;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Urbanist", sans-serif;
    line-height: 1.5;
}

/* Form Section */
.main-form2 {
    padding: 40px;
    border: 1px solid #474646;
    background: transparent;
}

.main-form2 h2 {
    font-family: "Tenor Sans", sans-serif;
    font-size: 27px;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.form-field2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-field2 label {
    font-size: 15px;
    font-weight: 500;
    color: white;
    font-family: "Urbanist", sans-serif;
}

.form-field2 input,
.form-field2 textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 15px;
    color: #ffffff;
    font-size: 14px;
    font-family: "Urbanist", sans-serif;
    outline: none;
    box-sizing: border-box;
}

.form-field2 input:focus,
.form-field2 textarea:focus {
    outline: none;
    border-color: #c9a86a;
}

.form-field2 textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button2 {
    background: #c9a86a;
    border: none;
    color: #000;
    padding: 15px 40px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: "Urbanist", sans-serif;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-button2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.submit-button2:hover::after {
    opacity: 1;
}

.thank-you-message {
    margin-top: 12px;
    color: #7cb342 !important;
    font-weight: 500;
    display: none;
}

/* Footer styling removed to use global styles from styles.css */

/* Responsiveness */

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .contact-grid2 {
        gap: 30px;
    }

    .contact-form2,
    .main-form2 {
        padding: 30px;
    }
}

/* Tablet Large (1024px and below) */
@media (max-width: 1024px) {
    .nav-left,
    .nav-right {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

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

/* Tablet Medium (900px and below) */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo {
        order: 2;
    }

    .menu-toggle {
        order: 1;
    }

    .contact2 {
        padding: 60px 0;
    }

    .contact-grid2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form2 {
        order: 2;
    }

    .main-form2 {
        order: 1;
    }

    .footer {
        padding: 60px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .container,
    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 40px;
    }

    .contact2 {
        padding: 50px 0;
    }

    .contact-form2,
    .main-form2 {
        padding: 25px;
    }

    .contact-form2 h2,
    .main-form2 h2 {
        font-size: 24px;
    }

    .office2 {
        padding: 15px;
    }

    .office2 h3 {
        font-size: 16px;
    }

    .office2 p {
        font-size: 13px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-brand img {
        height: 35px;
        max-width: 220px;
    }

    .subscribe-field {
        flex-direction: column;
    }

    .subscribe-field input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }
}

/* Mobile Large (640px and below) */
@media (max-width: 640px) {
    .contact-form2 h2,
    .main-form2 h2 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .contact-form2 p {
        font-size: 14px;
    }

    .form-field2 label {
        font-size: 14px;
    }

    .form-field2 input,
    .form-field2 textarea {
        font-size: 13px;
    }
}

/* Mobile Medium (480px and below) */
@media (max-width: 480px) {
    .contact-info2 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .container,
    .nav-container {
        padding: 0 15px;
    }

    .logo img {
        height: 25px;
    }

    .contact2 {
        padding: 40px 0;
    }

    .contact-grid2 {
        gap: 25px;
    }

    .contact-form2,
    .main-form2 {
        padding: 20px;
    }

    .contact-form2 h2,
    .main-form2 h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-form2 p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .contact-info2 {
        gap: 15px;
    }

    .office2 {
        padding: 12px;
    }

    .office2 h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .office2 p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .form-field2 {
        margin-bottom: 15px;
    }

    .form-field2 label {
        font-size: 13px;
    }

    .form-field2 input,
    .form-field2 textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .submit-button2 {
        padding: 12px 30px;
        font-size: 15px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-brand img {
        height: 50px;
        max-width: 300px;
    }

    .sidebar {
        width: 260px;
    }

    .footer-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
        row-gap: 10px;
    }

    .footer-column h4 {
        grid-column: span 2;
        text-align: left;
        margin-bottom: 15px;
    }

    .footer-column a {
        margin-bottom: 0;
        font-size: 13px;
    }

    .footer-column:nth-child(3) {
        display: block;
    }

    .footer-column:nth-child(3) .subscribe-field {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .footer-column:nth-child(3) .subscribe-field input {
        flex: 1;
    }

    .footer-column:nth-child(3) .subscribe-button {
        white-space: nowrap;
        width: auto;
    }

    .footer-column:nth-child(3) .social-icons {
        margin-top: 20px;
        display: flex;
        justify-content: flex-start;
    }
}

/* Mobile Small (360px and below) */
@media (max-width: 360px) {
    .contact-form2 h2,
    .main-form2 h2 {
        font-size: 18px;
    }

    .contact-form2,
    .main-form2 {
        padding: 15px;
    }

    .office2 h3 {
        font-size: 14px;
    }

    .office2 p {
        font-size: 11px;
    }

    .footer-brand img {
        height: 28px;
        max-width: 180px;
    }

    .sidebar {
        width: 240px;
    }
}

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .nav-left,
    .nav-right {
        gap: 40px;
    }
}

/* Tablet Large (1024px and below) */
@media (max-width: 1024px) {
    .nav-left,
    .nav-right {
        gap: 30px;
    }

    .nav-link {
        font-size: 15px;
    }
}

/* Tablet Medium (900px and below) */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo {
        order: 2;
    }

    .menu-toggle {
        order: 1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .container,
    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
        max-width: 220px;
    }

    .hero6 {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about,
    .choose,
    .values {
        padding: 60px 20px;
    }

    .about h2,
    .choose h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 16px;
    }

    .footer-brand img {
        height: 35px;
        max-width: 220px;
    }

    .subscribe-field {
        flex-direction: column;
    }

    .subscribe-field input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }
}

/* Mobile Large (640px and below) */
@media (max-width: 640px) {
    .hero6 {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .about h2,
    .choose h2 {
        font-size: 22px;
        letter-spacing: 2px;
    }
}

/* Mobile Medium (480px and below) */
@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 15px;
    }

    .logo img {
        height: 25px;
    }

    .sidebar-logo img {
        height: 30px;
        max-width: 170px;
    }

    .hero6 {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .about,
    .choose,
    .values {
        padding: 40px 15px;
    }

    .about h2,
    .choose h2 {
        font-size: 20px;
    }

    .about-text p {
        font-size: 15px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-brand img {
        height: 50px;
        max-width: 300px;
    }

    .sidebar {
        width: 260px;
    }
}

/* Mobile Small (360px and below) */
@media (max-width: 360px) {
    .hero6 {
        height: 320px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .about h2,
    .choose h2 {
        font-size: 18px;
    }

    .about,
    .choose,
    .values {
        padding: 35px 12px;
    }

    .logo img {
        height: 28px;
        max-width: 130px;
    }

    .sidebar-logo img {
        height: 22px;
        max-width: 140px;
    }

    .sidebar {
        width: 240px;
    }

    .footer-brand img {
        height: 28px;
        max-width: 180px;
    }
}
