/* Mobile Styles CSS - Complete redesign for mobile devices */

/* Email link styling for mobile */
a[href^="mailto:"] {
    color: #c700d1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a[href^="mailto:"]:hover,
a[href^="mailto:"]:active {
    color: #a6009f;
    border-bottom: 1px solid #c700d1;
}

/* Phone link styling for mobile */
a[href^="tel:"] {
    color: #c700d1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a[href^="tel:"]:hover,
a[href^="tel:"]:active {
    color: #a6009f;
    border-bottom: 1px solid #c700d1;
}

/* Hide/show elements based on screen size */
.mobile-only {
    display: none;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    /* Show mobile elements, hide desktop elements */
    .mobile-only {
        display: block;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
    
    /* Overall mobile styling - Updated to match desktop dark theme */
    body {
        background-color: #000;
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: #fff;
    }
    
    /* Header styling for mobile - Updated to match desktop */
    header {
        background-color: rgba(0, 0, 0, 0.95);
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        height: 70px;
        backdrop-filter: blur(10px);
    }
    
    header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 5%;
    }
    
    .logo {
        height: 50px;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Mobile navigation styles - moved inside media query for proper specificity */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Start fully off-screen */
        width: 80%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        transition: right 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        z-index: 1000;
        backdrop-filter: blur(10px);
        display: flex;
        list-style: none;
        margin: 0;
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-links.active {
        right: 0;
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links li {
        margin: 1.2rem 0;
        width: 100%;
    }
    
    .nav-links a {
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .nav-links a.active {
        color: #c700d1;
        background: rgba(199, 0, 209, 0.1);
    }
    
    .nav-links a:hover {
        color: #c700d1;
        background-color: rgba(199, 0, 209, 0.1);
    }
    
    .mobile-menu {
        display: block;
        font-size: 1.5rem;
        z-index: 1001;
        color: #fff;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu:hover {
        background-color: rgba(199, 0, 209, 0.1);
        color: #c700d1;
    }
    
    .mobile-menu:active {
        transform: scale(0.95);
    }
    
    /* Hero Section Mobile Adjustments */
    #hero .hero-content {
        padding-top: 100px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #hero .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    #hero .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    #hero .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    #hero .cta-button {
        padding: 1.1rem 2.2rem;
        font-size: 1rem;
    }
    
    @media (max-width: 480px) {
        #hero .hero-content h1 {
            font-size: 1.8rem;
        }
        
        #hero .cta-button {
            padding: 0.9rem 1.2rem;
            font-size: 0.95rem;
        }
    }
    
    /* Mobile Hero Section - Desktop 1:1 match, mobile optimized */
    #mobile-hero {
        position: relative;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background: #000;
    }
    .mobile-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        pointer-events: none;
        opacity: 1;
        background: #000;
    }
    .mobile-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
        width: 100%;
        padding-top: 80px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .mobile-logo-container {
        margin-bottom: 2rem;
    }
    .mobile-logo-container img {
        width: 160px;
        height: auto;
    }
    .mobile-hero-content h1 {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    .mobile-hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-weight: 300;
        letter-spacing: 1px;
    }
    .mobile-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    .mobile-cta-button {
        display: inline-block;
        padding: 1.1rem 2.2rem;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(199,0,209,0.3);
    }
    .mobile-cta-button.primary {
        background-color: #c700d1;
        color: #000;
    }
    .mobile-cta-button.secondary {
        background-color: transparent;
        color: #fff;
        border: 2px solid #c700d1;
    }
    .mobile-cta-button.primary:hover {
        background-color: #a6009f;
    }
    .mobile-cta-button.secondary:hover {
        background-color: rgba(199, 0, 209, 0.1);
        color: #c700d1;
    }
    @media (max-width: 480px) {
        .mobile-hero-content h1 {
            font-size: 1.5rem;
        }
        .mobile-logo-container img {
            width: 120px;
        }
        .mobile-cta-button {
            padding: 0.9rem 1.2rem;
            font-size: 0.95rem;
        }
    }
    
    /* Mobile Quick Actions - Updated to match desktop dark theme */
    #mobile-actions {
        padding: 3rem 1rem;
        background-color: #111;
    }
    
    .action-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .action-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(199, 0, 209, 0.2);
        border-radius: 10px;
        padding: 1.5rem;
        text-align: center;
        text-decoration: none;
        color: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    .action-item:active {
        transform: scale(0.96);
        background: rgba(199, 0, 209, 0.1);
    }
    
    .action-item i {
        font-size: 2rem;
        color: #c700d1;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .action-item span {
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }
    
    /* Mobile Simulator Teaser - Updated to match desktop dark theme */
    #mobile-simulator-teaser {
        padding: 3rem 1rem;
        background-color: #000;
        color: #fff;
    }
    
    .teaser-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .teaser-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .teaser-content p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .teaser-image {
        margin: 2rem 0;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    .teaser-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .mobile-btn {
        display: inline-block;
        background-color: #c700d1;
        color: #000;
        padding: 0.8rem 1.5rem;
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(199,0,209,0.3);
    }
    
    .mobile-btn:active {
        transform: scale(0.96);
        background-color: #a6009f;
    }
    
    .mobile-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    }
    
    /* Services section mobile styling - Updated to match desktop dark theme */
    #services {
        padding: 3rem 1rem;
        background-color: #000;
        color: #fff;
        position: relative;
    }
    
    #services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, #c700d1, transparent);
    }
    
    #services h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }
    
    #services h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #c700d1;
        margin: 0 auto;
        margin-top: 15px;
        border-radius: 2px;
    }
    
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(199, 0, 209, 0.2);
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(199, 0, 209, 0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }
    
    .service-card:hover::before {
        transform: translateX(100%);
    }
    
    .service-card:active {
        transform: scale(0.97);
        box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    }
    
    .service-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: rgba(199,0,209,0.1);
        border: 2px solid #c700d1;
        border-radius: 50%;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        transform: rotateY(180deg);
        background-color: rgba(199, 0, 209, 0.2);
    }
    
    .service-card i {
        font-size: 1.5rem;
        color: #c700d1;
        transition: all 0.3s ease;
    }
    
    .service-card:hover i {
        transform: rotateY(-180deg);
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .service-card p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-features {
        margin: 1rem 0;
        padding-left: 1.2rem;
        list-style: none;
    }
    
    .service-features li {
        color: rgba(255,255,255,0.8);
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-features li::before {
        content: '✓';
        color: #c700d1;
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    
    .service-link {
        display: inline-block;
        background-color: #c700d1;
        color: #000;
        padding: 0.6rem 1.2rem;
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.9rem;
        margin-top: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: 1px solid #c700d1;
    }
    
    .service-link:hover {
        background-color: #a6009f;
        transform: translateY(-2px);
    }
    
    /* Gallery section mobile styling - Updated to match desktop dark theme */
    #gallery {
        padding: 3rem 1rem;
        background-color: #111;
        color: #fff;
        position: relative;
    }
    
    #gallery::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, #c700d1, transparent);
    }
    
    #gallery h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }
    
    #gallery h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #c700d1;
        margin: 0 auto;
        margin-top: 15px;
        border-radius: 2px;
    }
    
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-item {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        height: 200px;
        box-shadow: 0 6px 24px rgba(0,0,0,0.25);
        background: #222;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        padding: 1rem;
        color: white;
        transition: all 0.3s ease;
    }
    
    .gallery-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        color: #fff;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
        opacity: 0.9;
        color: rgba(255,255,255,0.8);
    }
    
    /* Mobile Reviews Section - Updated to match desktop dark theme */
    #mobile-reviews {
        padding: 3rem 1rem;
        background-color: #000;
        color: #fff;
    }
    
    #mobile-reviews h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }
    
    #mobile-reviews h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #c700d1;
        margin: 0 auto;
        margin-top: 15px;
        border-radius: 2px;
    }
    
    .reviews-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .review-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(199, 0, 209, 0.2);
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }
    
    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        border-color: #c700d1;
    }
    
    .review-stars {
        margin-bottom: 1rem;
        color: #f8c43a;
        font-size: 1.1rem;
    }
    
    .review-text {
        font-style: italic;
        color: rgba(255,255,255,0.8);
        margin-bottom: 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .reviewer {
        font-weight: 600;
        color: #c700d1;
        text-align: right;
        font-size: 0.9rem;
    }
    
    /* About section mobile styling - Updated to match desktop dark theme */
    #about {
        padding: 3rem 1rem;
        background-color: #111;
        color: #fff;
        position: relative;
    }
    
    #about::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, #c700d1, transparent);
    }
    
    #about h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }
    
    #about h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #c700d1;
        margin: 0 auto;
        margin-top: 15px;
        border-radius: 2px;
    }
    
    .about-content p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(199, 0, 209, 0.2);
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        border-color: #c700d1;
    }
    
    .stat-number {
        display: block;
        font-size: 1.8rem;
        font-weight: 800;
        color: #c700d1;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .about-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(199, 0, 209, 0.2);
        border-radius: 10px;
        transition: all 0.3s ease;
        text-align: left;
    }
    
    .feature:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        border-color: #c700d1;
    }
    
    .feature i {
        font-size: 1.8rem;
        color: #c700d1;
        min-width: 1.8rem;
        text-align: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .feature:hover i {
        transform: scale(1.1);
    }
    
    /* Additional mobile-specific adjustments for better balance */
    @media (max-width: 480px) {
        .feature {
            padding: 1rem;
        }
        
        .feature i {
            font-size: 1.6rem;
            min-width: 1.6rem;
        }
        
        .feature h3 {
            font-size: 1rem;
        }
        
        .feature p {
            font-size: 0.85rem;
        }
    }
    
    .feature .feature-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .feature h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .feature p {
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }
    
    /* Contact section mobile styling - Updated to match desktop dark theme */
    #contact {
        padding: 3rem 1rem;
        background-color: #000;
        color: #fff;
        position: relative;
    }
    
    #contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, #c700d1, transparent);
    }
    
    #contact h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }
    
    #contact h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #c700d1;
        margin: 0 auto;
        margin-top: 15px;
        border-radius: 2px;
    }
    
    .contact-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-form {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(199, 0, 209, 0.2);
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 5px;
        background: rgba(255,255,255,0.05);
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        outline: none;
        border-color: #c700d1;
        box-shadow: 0 0 10px rgba(199, 0, 209, 0.3);
    }
    
    .contact-form textarea {
        resize: vertical;
        min-height: 100px;
    }
    
    .submit-button {
        width: 100%;
        background-color: #c700d1;
        color: #000;
        padding: 1rem;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(199,0,209,0.3);
    }
    
    .submit-button:hover {
        background-color: #a6009f;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(199, 0, 209, 0.3);
    }
    
    .info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(199, 0, 209, 0.2);
        border-radius: 10px;
        transition: all 0.3s ease;
        text-align: left;
    }
    
    .info-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        border-color: #c700d1;
    }
    
    .info-item i {
        font-size: 1.8rem;
        color: #c700d1;
        min-width: 1.8rem;
        text-align: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .info-item:hover i {
        transform: scale(1.1);
    }
    
    .info-item .info-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .info-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .info-item p {
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }
    
    /* Enhanced email link styling within info items */
    .info-item a[href^="mailto:"] {
        color: #c700d1;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid rgba(199, 0, 209, 0.3);
        transition: all 0.3s ease;
    }
    
    .info-item a[href^="mailto:"]:hover,
    .info-item a[href^="mailto:"]:active {
        color: #fff;
        border-bottom: 1px solid #c700d1;
        background-color: rgba(199, 0, 209, 0.1);
        padding: 2px 4px;
        border-radius: 3px;
    }
    
    /* Enhanced phone link styling within info items */
    .info-item a[href^="tel:"] {
        color: #c700d1;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid rgba(199, 0, 209, 0.3);
        transition: all 0.3s ease;
    }
    
    .info-item a[href^="tel:"]:hover,
    .info-item a[href^="tel:"]:active {
        color: #fff;
        border-bottom: 1px solid #c700d1;
        background-color: rgba(199, 0, 209, 0.1);
        padding: 2px 4px;
        border-radius: 3px;
    }
    
    .info-subtext {
        color: #c700d1;
        font-size: 0.8rem;
        font-style: italic;
    }
    
    /* Additional mobile-specific adjustments for contact info items */
    @media (max-width: 480px) {
        .info-item {
            padding: 1rem;
        }
        
        .info-item i {
            font-size: 1.6rem;
            min-width: 1.6rem;
        }
        
        .info-item h3 {
            font-size: 1rem;
        }
        
        .info-item p {
            font-size: 0.85rem;
        }
    }
    
    /* Footer mobile styling - Updated to match desktop dark theme */
    footer {
        background-color: #000;
        color: #fff;
        position: relative;
    }
    
    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, #c700d1, transparent);
    }
    
    .footer-content {
        padding: 2rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #c700d1;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }
    
    .footer-section h3::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background-color: #c700d1;
        margin-top: 8px;
        border-radius: 1px;
    }
    
    .footer-section p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .footer-section ul {
        list-style: none;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .footer-section ul li a:hover {
        color: #c700d1;
    }
    
    /* Enhanced email link styling in footer */
    .footer-section a[href^="mailto:"] {
        color: #c700d1;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid rgba(199, 0, 209, 0.3);
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-section a[href^="mailto:"]:hover,
    .footer-section a[href^="mailto:"]:active {
        color: #fff;
        border-bottom: 1px solid #c700d1;
        background-color: rgba(199, 0, 209, 0.1);
        padding: 2px 4px;
        border-radius: 3px;
    }
    
    /* Enhanced phone link styling in footer */
    .footer-section a[href^="tel:"] {
        color: #c700d1;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid rgba(199, 0, 209, 0.3);
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-section a[href^="tel:"]:hover,
    .footer-section a[href^="tel:"]:active {
        color: #fff;
        border-bottom: 1px solid #c700d1;
        background-color: rgba(199, 0, 209, 0.1);
        padding: 2px 4px;
        border-radius: 3px;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(199, 0, 209, 0.1);
        border: 1px solid #c700d1;
        border-radius: 50%;
        color: #c700d1;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: #c700d1;
        color: #000;
        transform: translateY(-2px);
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .footer-social a {
        color: #aaa;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

    .footer-social a:active {
        color: #fff;
    }
    
    .mobile-footer-actions {
        display: flex;
        justify-content: space-around;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-action {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: #fff;
        text-decoration: none;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }
    
    .mobile-action:active {
        transform: scale(0.95);
        color: #c700d1;
    }
    
    .mobile-action i {
        font-size: 1.5rem;
        color: #c700d1;
        transition: all 0.3s ease;
    }
    
    .mobile-action span {
        font-weight: 600;
    }
    
    @media (max-width: 375px) {
        .mobile-hero-content h1 {
            font-size: 2rem;
        }
        
        .action-grid {
            grid-template-columns: 1fr;
        }
        
        .action-item {
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 1.5rem;
        }
    }

    .nav-links {
        align-items: stretch;
        padding: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }

    .mobile-menu-logo img {
        height: 40px;
    }

    #mobile-menu-close {
        color: #aaa;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        transition: color 0.2s, transform 0.2s;
    }

    #mobile-menu-close:hover {
        color: #fff;
        transform: rotate(90deg);
    }

    .mobile-menu-links {
        list-style: none;
        padding: 2rem 1.5rem;
        margin: 0;
        flex-grow: 1;
        overflow-y: auto;
    }
    
    .nav-links .mobile-menu-links li {
        margin: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .nav-links.active .mobile-menu-links li {
        animation: slideIn 0.4s ease-out forwards;
    }

    .nav-links.active .mobile-menu-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active .mobile-menu-links li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.active .mobile-menu-links li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.active .mobile-menu-links li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.active .mobile-menu-links li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.active .mobile-menu-links li:nth-child(6) { animation-delay: 0.35s; }

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

    .nav-links .mobile-menu-links a {
        color: #ddd;
        font-weight: 500;
        font-size: 1.2rem;
        display: block;
        padding: 1rem 0.5rem;
        border-bottom: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.2s, background-color 0.2s;
        border-radius: 5px;
        text-decoration: none;
    }

    .nav-links .mobile-menu-links a.active,
    .nav-links .mobile-menu-links a:hover {
        color: #fff;
        background-color: rgba(199, 0, 209, 0.15);
    }

    .mobile-menu-footer {
        padding: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }

    .mobile-menu-footer .footer-social {
        justify-content: center;
    }
} 