/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #111111;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 40px;
    z-index: 1000;
    background-color: transparent;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.header.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    background-color: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 32px;
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
    opacity: 1;
}

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

.nav-links > a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

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

/* Dropdown Navigation */
.dropdown-menu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin-top: 0;
}

.nav-container.dropdown-active .dropdown-menu {
    max-height: 300px;
    opacity: 1;
    padding: 24px 0 12px 0;
}

.dropdown-content {
    display: flex;
    justify-content: flex-end;
    gap: 120px;
    padding: 0 40px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dropdown-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #068367;
    margin: 0 0 8px 0;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-column li a {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
    display: block;
    text-decoration: none;
}

.dropdown-column li a:hover {
    color: #095544;
}

.dropdown-sublist {
    margin-top: 8px;
}

/* Main Content */
.main-content {
    position: relative;
    min-height: 100vh;
    margin-top: -80px;
    padding-top: 227px;
}

/* Contact Section */
.contact-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 94px 120px;
}

.section-title {
    margin-bottom: 80px;
}

.section-title h1 {
    font-size: 48px;
    font-weight: 700;
    color: #068367;
    margin-bottom: 24px;
}

.section-title .subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Info Grid */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-email {
    background-color: transparent;
    border: none;
}

.icon-phone {
    background-color: transparent;
    border: none;
}

.icon-location {
    background-color: transparent;
    border: none;
}

.icon-wrapper img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(1200%) hue-rotate(140deg) brightness(0.9) contrast(1.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #068367;
}

.contact-details p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
}

.contact-details a {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
}

.view-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #095544;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.view-map-link .arrow-icon {
    width: 7px;
    height: 12px;
    filter: brightness(0) invert(1);
}

/* Map Container */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.map-container iframe {
    display: block;
    border: none;
}

/* Background Decoration */
.background-decoration {
    position: absolute;
    right: 0;
    bottom: 100px;
    width: 540px;
    height: 746px;
    pointer-events: none;
    z-index: 0;
}

.background-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .background-decoration {
        width: 400px;
        height: 550px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-section {
        padding: 0 40px 80px;
    }
    
    .section-title h1 {
        font-size: 36px;
    }
    
    
    .background-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 0 20px 60px;
    }
    
    .section-title h1 {
        font-size: 28px;
    }
    
}