:root {
    --primary: #669966;
    --primary-hover: #4f7f4f;
    --secondary: #cc9966;
    --secondary-hover: #b07f4f;
    --accent: #3f5d7d;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #fff;
    --footer-bg: #f8f8f8;
    --border-color: #e5e5e5;
}

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

body {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Varela Round", sans-serif;
}

.title-highlight {
    color: #d4af37;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.cnt-hero {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 72px;
}

.cnt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            135deg,
            rgba(63, 93, 125, 0.85),
            rgba(102, 153, 102, 0.75)
        ),
        url(../images/office-hero.jpg)
            center/cover no-repeat;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cnt-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 24px;
    text-align: left;
}

.cnt-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.cnt-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.cnt-form-section {
    padding: 80px 24px;
    background: rgba(102, 153, 102, .05);
}

.cnt-form-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cnt-form-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
}

.cnt-form-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.cnt-form-title-accent {
    color: var(--secondary);
}

.cnt-form-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cnt-form-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    transition: transform 0.2s ease;
}

.cnt-form-contact-item:hover {
    transform: translateX(5px);
}

.cnt-form-contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cnt-form-contact-details {
    flex: 1;
}

.cnt-form-contact-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 4px;
    display: block;
}

.cnt-form-contact-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.cnt-form-divider {
    height: 1px;
    background: var(--border-color);
    margin: 40px 0;
}

.cnt-form-social-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.cnt-form-social-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cnt-form-social-links {
    display: flex;
    gap: 16px;
}

.cnt-form-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cnt-form-social-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.cnt-form-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease forwards;
}

.cnt-form-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-height: 600px;
}

.cnt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.cnt-form-group {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.cnt-form-group.full-width {
    grid-column: 1 / -1;
}

.cnt-form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cnt-form-input {
    padding: 14px 16px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 0.95rem;
    font-family: "Instrument Sans", sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: transparent;
}

.cnt-form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.cnt-form-input::placeholder {
    color: #9ca3af;
}

.cnt-form-textarea {
    padding: 14px 16px 14px 14px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 0.95rem;
    font-family: "Instrument Sans", sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: transparent;
    resize: vertical;
    min-height: 80px;
}

.cnt-form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.cnt-form-textarea::placeholder {
    color: #9ca3af;
}

.cnt-form-submit {
    background: var(--primary);
    color: var(--text-light);
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Instrument Sans", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cnt-form-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 153, 102, 0.3);
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cnt-hero:hover .cnt-hero-bg {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .cnt-hero {
        height: 28vh;
        min-height: 260px;
    }

    .cnt-hero-title {
        font-size: 3rem;
    }

    .cnt-hero-subtitle {
        font-size: 0.95rem;
    }

    .cnt-form-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cnt-form-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .cnt-hero {
        height: 25vh;
        min-height: 240px;
        margin-top: 64px;
    }

    .cnt-hero-content {
        padding: 0 20px;
    }

    .cnt-hero-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .cnt-hero-subtitle {
        font-size: 0.9rem;
    }

    .cnt-form-section {
        padding: 60px 20px;
    }

    .cnt-form-title {
        font-size: 2rem;
    }

    .cnt-form-card {
        padding: 32px;
    }

    .cnt-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cnt-hero {
        height: 22vh;
        min-height: 220px;
    }

    .cnt-hero-content {
        padding: 0 16px;
    }

    .cnt-hero-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .cnt-hero-subtitle {
        font-size: 0.85rem;
    }

    .cnt-form-section {
        padding: 50px 16px;
    }

    .cnt-form-title {
        font-size: 1.75rem;
    }

    .cnt-form-card {
        padding: 24px;
    }

    .cnt-form-submit {
        width: 100%;
        padding: 16px;
    }
}

.cnt-loc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cnt-loc {
    width: 100%;
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.cnt-loc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cnt-loc-info {
    padding-top: 1rem;
}

.cnt-loc-info h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cnt-loc-info h1 span {
    color: var(--secondary);
}

.cnt-loc-info > p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 90%;
}

.cnt-loc-details {
    margin-top: 2.5rem;
}

.loc-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 1rem 0;
    width: 100%;
}

.loc-detail-item {
    margin-bottom: 1rem;
}

.loc-detail-item h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.loc-detail-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-text h4 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.contact-text p {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
}

.cnt-loc-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    order: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cnt-loc-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.cnt-loc-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cnt-loc-info {
    order: 2;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cnt-loc-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.cnt-loc-map {
    width: 100%;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cnt-loc-map.visible {
    opacity: 1;
    transform: translateY(0);
}

.cnt-loc-map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cnt-loc-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1200px) {
    .cnt-loc-content {
        gap: 3rem;
    }

    .cnt-loc-info h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .cnt-loc-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .cnt-loc-image {
        order: 1;
    }

    .cnt-loc-info {
        order: 2;
    }

    .cnt-loc-info > p {
        max-width: 100%;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cnt-loc {
        padding: 3.5rem 0;
    }

    .cnt-loc-info h1 {
        font-size: 2.2rem;
    }

    .loc-detail-item h2 {
        font-size: 1.6rem;
    }

    .cnt-loc-map-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .cnt-loc {
        padding: 2.5rem 0;
    }

    .cnt-loc-info h1 {
        font-size: 1.9rem;
    }

    .cnt-loc-info > p {
        font-size: 1rem;
    }

    .loc-detail-item h2 {
        font-size: 1.4rem;
    }

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

    .cnt-loc-map-container {
        height: 350px;
    }
}

