/* Enhanced inline link styling */
.inline-link {
    color: #2d5a87;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #2d3c4e;
    border-bottom-color: #2d3c4e;
}

/* Enhanced about buttons */
.about-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2d5a87 0%, #2d3c4e 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 1rem;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 135, 0.4);
    background: linear-gradient(135deg, #2d3c4e 0%, #2d5a87 100%);
}

/* Enhanced section styling */
.global-reach, .sales-partnerships, .customer-support, .contact-us {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e1e5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HQ Image Styling */
.hq-image-container {
    margin: 1.5rem 0;
    text-align: center;
}

.hq-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hq-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.global-reach:hover, .sales-partnerships:hover, .customer-support:hover, .contact-us:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced company history section */
.company-history {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2d5a87;
}

/* Enhanced video container */
.video-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

/* Enhanced address styling */
address {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2d5a87;
    margin: 1rem 0;
    font-style: normal;
    line-height: 1.6;
}

address a {
    color: #2d5a87;
    text-decoration: none;
    font-weight: 500;
}

address a:hover {
    color: #2d3c4e;
    text-decoration: underline;
}

/* Enhanced profile grid */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Equal height sections */
.global-reach, .sales-partnerships, .customer-support, .contact-us {
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.global-reach .about-btn, 
.sales-partnerships .about-btn,
.customer-support .about-btn, 
.contact-us .about-btn {
    margin-top: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .global-reach, .sales-partnerships, .customer-support, .contact-us {
        padding: 1.5rem;
    }
    
    .company-history {
        padding: 1.5rem;
    }
    
    .hq-image {
        max-width: 100%;
        border-radius: 6px;
    }
    
    .hq-image-container {
        margin: 1rem 0;
    }
}

/* Facility Section Styling */
.facility-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.facility-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.facility-text h2 {
    color: #2d3c4e;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.facility-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.facility-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2d5a87 0%, #2d3c4e 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 1rem;
}

.facility-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 135, 0.4);
    background: linear-gradient(135deg, #2d3c4e 0%, #2d5a87 100%);
}

.facility-image {
    text-align: center;
}

.hq-facility-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hq-facility-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for facility section */
@media (max-width: 768px) {
    .facility-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .facility-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facility-text h2 {
        font-size: 2rem;
    }
    
    .facility-text p {
        font-size: 1rem;
    }
    
    .hq-facility-image {
        max-width: 100%;
        border-radius: 8px;
    }
}
