/* Services Page Specific Styles */

/* Creative Navigation Styles */
.creative-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
    transition: all 0.3s ease;
    height: 80px;
}

/* Ensure no underlines on navbar links */
.creative-navbar a {
    text-decoration: none !important;
}

.creative-navbar a:hover {
    text-decoration: none !important;
}

.creative-navbar a:focus {
    text-decoration: none !important;
    outline: none;
}

.creative-navbar a:visited {
    text-decoration: none !important;
}

.creative-navbar a:active {
    text-decoration: none !important;
}

.creative-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(44, 44, 44, 0.1);
    height: 70px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Section */
.nav-logo-section {
    flex: 0 0 auto;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.logo-container:hover .logo-bg {
    opacity: 1;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2c2c2c;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    letter-spacing: 2px;
    text-decoration: none !important;
}

.nav-logo:hover {
    text-decoration: none !important;
}

.nav-logo:focus {
    text-decoration: none !important;
    outline: none;
}

.nav-logo:visited {
    text-decoration: none !important;
}

.nav-logo:active {
    text-decoration: none !important;
}

/* Specific styling for the logo link */
.logo-container a {
    text-decoration: none !important;
    color: inherit;
}

.logo-container a:hover {
    text-decoration: none !important;
}

.logo-container a:focus {
    text-decoration: none !important;
    outline: none;
}

.logo-container a:visited {
    text-decoration: none !important;
}

.logo-container a:active {
    text-decoration: none !important;
}

.logo-container:hover .nav-logo {
    color: #ffffff;
}

.logo-accent {
    position: absolute;
    top: 50%;
    right: -10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6b6b6b 0%, #8a8a8a 100%);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-accent {
    opacity: 1;
    transform: translateY(-50%) scale(1.5);
}

/* Center Navigation */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    transition: left 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover::before {
    left: 0;
}

.nav-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.nav-link:hover .nav-text {
    color: #ffffff;
}

.nav-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #6b6b6b 0%, #8a8a8a 100%);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-indicator {
    width: 80%;
}

.nav-link.active .nav-indicator {
    width: 80%;
}

.nav-link.active::before {
    left: 0;
}

.nav-link.active .nav-text {
    color: #ffffff;
}

.nav-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8e8e8, transparent);
    transform: translateY(-50%);
    z-index: -1;
    display: none; /* Hide the line to prevent blue line issue */
}

/* Right Section */
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a4a4a 0%, #6b6b6b 100%);
    transition: left 0.3s ease;
    border-radius: 50px;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button span,
.cta-icon {
    position: relative;
    z-index: 2;
}

.cta-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(3px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(44, 44, 44, 0.1);
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 100%;
    height: 3px;
    background: #2c2c2c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover .line {
    background: #4a4a4a;
}

/* Floating Elements */
.nav-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6b6b6b;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.dot-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Modern Mobile Menu Overlay - Fixed Version */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff !important;
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    overflow: hidden;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active {
    left: 0 !important;
    pointer-events: auto;
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 40px;
    color: #2c2c2c !important;
    z-index: 10000;
    background: transparent;
}

.mobile-menu-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #2c2c2c !important;
    letter-spacing: 1px;
}

.mobile-menu-header {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10001;
}

.mobile-menu-header h3 {
    display: none;
}

.mobile-close {
    background: #f0f0f0 !important;
    border: 2px solid #ddd !important;
    color: #2c2c2c !important;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.mobile-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.mobile-close:hover::before {
    transform: translateX(100%);
}

.mobile-close:hover {
    background: #e0e0e0 !important;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 60px;
    width: 100%;
}

.mobile-link {
    position: relative;
    text-decoration: none;
    color: #2c2c2c !important;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 18px 0;
    transition: all 0.4s ease;
    overflow: hidden;
    pointer-events: auto;
    cursor: pointer;
    display: block;
    border-radius: 12px;
    margin-bottom: 8px;
    transform: translateX(-50px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-link {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(74, 144, 226, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.mobile-link:hover::before {
    left: 100%;
}

.mobile-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.mobile-link:hover::after {
    width: 60px;
}

.mobile-link:hover {
    transform: translateX(10px);
    color: #2c2c2c;
}

.mobile-link-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-link-text::before {
    content: '→';
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-link:hover .mobile-link-text::before {
    opacity: 1;
    transform: translateX(0);
}

.mobile-link-indicator {
    display: none;
}

.mobile-menu-cta {
    margin-top: 40px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-cta {
    transform: translateX(0);
    opacity: 1;
}

.mobile-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.mobile-cta-button:hover::before {
    left: 100%;
}

.mobile-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-cta-button i {
    transition: transform 0.3s ease;
}

.mobile-cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Mobile and Tablet Responsive */
@media (max-width: 768px) {
    .creative-navbar {
        height: 70px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-center {
        display: none !important;
    }
    
    .nav-cta {
        display: none !important;
    }
    
    .nav-toggle {
        display: block !important;
    }
    
    /* Mobile Menu Overlay - Force mobile styles */
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 9999 !important;
        transition: left 0.4s ease !important;
        pointer-events: none;
        overflow: hidden;
    }
    
    .mobile-menu-overlay.active {
        left: 0 !important;
        pointer-events: auto !important;
    }
    
    .mobile-menu-content {
        position: relative !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        padding: 120px 35px 40px;
        color: #2c2c2c !important;
    }
    
    .mobile-link {
        font-size: 2rem;
        padding: 16px 0;
        color: #2c2c2c !important;
        display: block !important;
    }
    
    .mobile-close {
        position: absolute !important;
        top: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        background: #f0f0f0 !important;
        color: #2c2c2c !important;
        border: 2px solid #ddd !important;
    }
    
    .mobile-menu-logo {
        position: absolute !important;
        top: 30px;
        left: 35px;
        color: #2c2c2c !important;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .logo-container {
        padding: 8px 15px;
    }
    
    /* Force mobile menu to override desktop styles */
    .mobile-menu-overlay .mobile-menu-content {
        padding: 120px 35px 40px !important;
        position: relative !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        color: #2c2c2c !important;
        z-index: 10000 !important;
        background: transparent !important;
    }
    
    .mobile-menu-overlay .mobile-link {
        font-size: 2rem !important;
        padding: 16px 0 !important;
        color: #2c2c2c !important;
        display: block !important;
        position: relative !important;
        text-decoration: none !important;
        font-weight: 700 !important;
        transition: all 0.4s ease !important;
        overflow: hidden !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        border-radius: 12px !important;
        margin-bottom: 8px !important;
        transform: translateX(-50px) !important;
        opacity: 0 !important;
    }
    
    .mobile-menu-overlay.active .mobile-link {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-overlay .mobile-close {
        position: absolute !important;
        top: 25px !important;
        right: 25px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        background: #f0f0f0 !important;
        color: #2c2c2c !important;
        border: 2px solid #ddd !important;
        cursor: pointer !important;
        padding: 12px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        pointer-events: auto !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .mobile-menu-overlay .mobile-menu-logo {
        position: absolute !important;
        top: 30px !important;
        left: 35px !important;
        color: #2c2c2c !important;
        font-size: 1.5rem !important;
        font-weight: 900 !important;
        letter-spacing: 1px !important;
    }
    
    /* Ensure mobile menu links are properly styled */
    .mobile-menu-overlay .mobile-menu-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-bottom: 60px !important;
        width: 100% !important;
    }
    
    .mobile-menu-overlay .mobile-menu-cta {
        margin-top: 40px !important;
        transform: translateX(-50px) !important;
        opacity: 0 !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        transition-delay: 0.3s !important;
    }
    
    .mobile-menu-overlay.active .mobile-menu-cta {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .creative-navbar {
        height: 65px;
        padding: 0;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 100%;
    }
    
    .nav-logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .logo-container {
        padding: 8px 16px;
    }
    
    .hamburger {
        width: 28px;
        height: 16px;
    }
    
    .line {
        height: 2px;
    }
    
    /* Mobile menu for small screens */
    .mobile-menu-content {
        width: 98%;
        max-width: 320px;
    }
    
    .mobile-menu-header h3 {
        font-size: 1.6rem;
    }
    
    .mobile-link {
        font-size: 1.2rem;
        padding: 12px 0;
    }
    
    .mobile-cta-button {
        padding: 16px 30px;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .creative-navbar {
        height: 60px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .logo-container {
        padding: 6px 12px;
    }
    
    .hamburger {
        width: 25px;
        height: 16px;
    }
    
    .line {
        height: 2px;
    }
    
    .mobile-menu-content {
        width: 95%;
        max-width: 300px;
    }
    
    .mobile-link {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .mobile-cta-button {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(44, 44, 44, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b6b6b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services Overview */
.services-overview {
    padding: 120px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44, 44, 44, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 2px solid #2c2c2c;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 30px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: #6b6b6b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #6b6b6b;
    font-size: 0.95rem;
}

.feature i {
    color: #2c2c2c;
    font-size: 14px;
}


/* Process Section */
.process-section {
    padding: 120px 0;
    background: #f8f8f8;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8e8e8 0%, #2c2c2c 50%, #e8e8e8 100%);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 auto 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #6b6b6b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Equipment Section */
.equipment-section {
    padding: 120px 0;
    background: #ffffff;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.equipment-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e8e8e8;
    box-shadow: 0 5px 20px rgba(44, 44, 44, 0.05);
}

.equipment-item:hover {
    transform: translateY(-10px);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 30px;
    color: #ffffff;
}

.equipment-item h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.equipment-item p {
    color: #6b6b6b;
    line-height: 1.6;
    font-size: 0.95rem;
}


.btn-outline {
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline:hover {
    background: #2c2c2c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .equipment-item {
        padding: 30px 20px;
    }
    
}

/* Advanced Mobile Animations */
@media (max-width: 768px) {
    .service-card {
        transform: translateY(20px);
        opacity: 0;
        animation: slideInUp 0.6s ease-out forwards;
    }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
    
    @keyframes slideInUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .process-step {
        transform: translateY(20px);
        opacity: 0;
        animation: slideInUp 0.6s ease-out forwards;
    }
    
    .process-step:nth-child(1) { animation-delay: 0.1s; }
    .process-step:nth-child(2) { animation-delay: 0.2s; }
    .process-step:nth-child(3) { animation-delay: 0.3s; }
    .process-step:nth-child(4) { animation-delay: 0.4s; }
    .process-step:nth-child(5) { animation-delay: 0.5s; }
}

/* Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .service-card:active {
        transform: translateY(-5px) scale(1.02);
    }
    
    
    .btn-outline:active {
        transform: scale(0.95);
    }
}
