/* Mobile Menu Styles */
.mobile-menu-btn {
    position: relative;
    z-index: 60;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    height: 2px;
    width: 100%;
    background: #3a0ca3;
    border-radius: 1px;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

/* Hamburger Animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100%;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    color: white;
}

.mobile-menu-header h2 {
    color: white;
    font-size: 18px;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-nav {
    flex: 1;
    padding: 16px 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
    background: #f9fafb;
    color: #3a0ca3;
    border-left-color: #f72585;
}

.mobile-menu-link i {
    color: #6b7280;
    width: 18px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover i {
    color: #3a0ca3;
}

.mobile-menu-footer {
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.mobile-contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(58, 12, 163, 0.3);
}

.mobile-contact-info {
    space-y: 6px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.mobile-contact-item:hover {
    color: #3a0ca3;
}

.mobile-contact-item:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.mobile-contact-item span {
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-contact-item span {
        font-size: 11px;
    }
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Header responsive improvements */
@media (max-width: 768px) {
    header {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    header h1 {
        line-height: 1.2;
    }
}

/* Service Areas Section */
.service-areas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-tag {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.area-tag:hover {
    border-color: #3a0ca3;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 12, 163, 0.15);
    color: #3a0ca3;
}

.area-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.area-icon i {
    color: white;
    font-size: 16px;
}

.area-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .area-tag {
        padding: 0.875rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .area-tag {
        padding: 0.75rem;
    }
    
    .area-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.75rem;
    }
    
    .area-text {
        font-size: 0.875rem;
    }
}

/* Logo Design */
.logo-container {
    position: relative;
    padding: 0.125rem 0;
}

.company-name {
    display: block;
    font-size: 1.25rem;
    line-height: 0.9;
    margin-bottom: 0.0625rem;
    letter-spacing: 0.025em;
}

.company-type {
    display: block;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
}

.logo-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #f72585, #3a0ca3);
    border-radius: 1px;
}

/* Responsive Logo */
@media (min-width: 768px) {
    .company-name {
        font-size: 1.5rem;
    }
    
    .company-type {
        font-size: 0.875rem;
    }
    
    .logo-underline {
        width: 45px;
        height: 2px;
    }
}

@media (min-width: 1024px) {
    .company-name {
        font-size: 1.75rem;
    }
    
    .company-type {
        font-size: 1rem;
    }
    
    .logo-underline {
        width: 55px;
        height: 3px;
    }
}

/* Alternative Horizontal Layout (Optional) */
.logo-horizontal {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.logo-horizontal .company-name {
    font-size: 1.375rem;
    margin-bottom: 0;
}

.logo-horizontal .company-type {
    font-size: 0.75rem;
    margin-top: 0.125rem;
}

@media (min-width: 768px) {
    .logo-horizontal .company-name {
        font-size: 1.625rem;
    }
    
    .logo-horizontal .company-type {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .logo-horizontal .company-name {
        font-size: 1.875rem;
    }
    
    .logo-horizontal .company-type {
        font-size: 1rem;
    }
}

/* Header responsive improvements */
@media (max-width: 768px) {
    header {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .logo-container {
        padding: 0.0625rem 0;
    }
}

/* Map Styles */
.map-container {
    position: relative;
    background: #f3f4f6;
    border: 2px solid #374151;
    transition: border-color 0.3s ease;
}

.map-container:hover {
    border-color: #3a0ca3;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: brightness(1.1);
}

/* Responsive map adjustments */
@media (max-width: 768px) {
    .map-container iframe {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 160px;
    }
} 