/* Website Development Page Custom Styles */

/* Hero Navbar Styles */
.hero-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-nav-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-nav-link:hover {
    color: #3AA6A4 !important;
    transform: translateY(-2px);
}

.hero-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3AA6A4;
    transition: all 0.3s ease;
}

.hero-nav-link:hover::after {
    width: 100%;
}

.hero-nav-link.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.hero-nav-dropdown {
    position: relative;
}

.hero-nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.hero-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 10px;
}

.hero-nav-dropdown:hover .hero-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.hero-dropdown-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.hero-dropdown-section {
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-dropdown-section:hover {
    background: rgba(58, 166, 164, 0.05);
}

.hero-dropdown-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-dropdown-title i {
    color: #3AA6A4;
    font-size: 1.1rem;
}

.hero-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-dropdown-list li {
    margin-bottom: 0.5rem;
}

.hero-dropdown-item {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
}

.hero-dropdown-item:hover {
    color: #3AA6A4;
    background: rgba(58, 166, 164, 0.1);
    padding-left: 1rem;
    transform: translateX(5px);
}

.hero-dropdown-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero-services-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3AA6A4;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #3AA6A4;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.hero-services-link:hover {
    background: #3AA6A4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 166, 164, 0.3);
}

.hero-nav-logo {
    display: flex;
    align-items: center;
}

.hero-nav-logo img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.hero-nav-logo:hover img {
    transform: scale(1.05);
}

/* Mobile Hero Navbar */
@media (max-width: 991px) {
    .hero-nav-links {
        display: none;
    }
    
    .hero-nav-content {
        justify-content: center;
    }
    
    .hero-dropdown-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-dropdown-menu {
        width: 95vw;
        left: 50%;
        transform: translateX(-50%);
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-navbar {
        padding: 15px 0;
    }
    
    .hero-nav-logo img {
        height: 40px;
    }
}

/* Navbar Styles - Matching New York Page */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1050;
    position: relative;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    margin-left: 0;
    color: var(--dark);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3AA6A4 0%, #297474 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Header CTA Button */
.header-cta {
    background: linear-gradient(135deg, #3AA6A4 0%, #297474 100%);
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-cta:hover {
    background: linear-gradient(135deg, #297474 0%, #1e5a5a 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(58, 166, 164, 0.3);
}

/* Services Page Link in Dropdown */
.dropdown-services-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.services-page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3AA6A4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-page-link:hover {
    color: #297474;
    transform: translateX(5px);
}

/* Mega Dropdown Styles */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-60%) translateY(-20px) scale(0.98);
    width: 800px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.mega-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-60%) translateY(0) scale(1);
}

.dropdown-section {
    padding: 25px 20px;
    border-right: 1px solid #f1f5f9;
}

.dropdown-section:last-child {
    border-right: none;
}

.dropdown-section-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-section-title i {
    color: var(--primary);
    font-size: 1rem;
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    margin-bottom: 8px;
}

.dropdown-item {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.dropdown-item:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.dropdown-item:hover::before {
    width: 12px;
}

.nav-item.dropdown:hover .dropdown-toggle {
    color: var(--primary);
}

.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-toggle {
    position: relative;
}

@media (min-width: 1200px) {
    .nav-item.dropdown:last-child .mega-dropdown {
        left: auto;
        right: 0;
        transform: translateX(0) translateY(-20px) scale(0.98);
    }
    
    .nav-item.dropdown:last-child .dropdown.show .mega-dropdown,
    .nav-item.dropdown:last-child:hover .mega-dropdown {
        transform: translateX(0) translateY(0) scale(1);
    }
}

@media (max-width: 991px) {
    .navbar {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .header-cta {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
}


/* Removed navbar and dropdown styles */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-60%) translateY(-20px) scale(0.98);
    width: 800px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.mega-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-60%) translateY(0) scale(1);
}

.dropdown-section {
    padding: 25px 20px;
    border-right: 1px solid #f1f5f9;
}

.dropdown-section:last-child {
    border-right: none;
}

.dropdown-section-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-section-title i {
    color: var(--primary);
    font-size: 1rem;
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    margin-bottom: 8px;
}

.dropdown-item {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.dropdown-item:hover {
    color: var(--primary);
    background: rgba(58, 166, 164, 0.1);
    transform: translateX(5px);
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.dropdown-item:hover::before {
    width: 15px;
}

/* Hover effect for dropdown trigger */
.nav-item.dropdown:hover .dropdown-toggle {
    color: #3AA6A4 !important;
}

/* Fix vertical alignment for dropdown button */
.nav-item.dropdown {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-item.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Smart positioning to prevent overflow */
.nav-item.dropdown {
    position: relative;
}

@media (min-width: 1200px) {
    /* If dropdown is too far right, adjust positioning */
    .nav-item.dropdown:last-child .mega-dropdown {
        left: auto;
        right: 0;
        transform: translateX(0) translateY(-20px) scale(0.98);
    }
    
    .nav-item.dropdown:last-child .dropdown.show .mega-dropdown,
    .nav-item.dropdown:last-child:hover .mega-dropdown {
        transform: translateX(0) translateY(0) scale(1);
    }
}


/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stats-section .stat-item {
    text-align: center;
    padding: 1rem;
}

.stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'MuseoModerno', sans-serif;
}

.stats-section .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-section {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .stats-section .stat-number {
        font-size: 2rem;
    }
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Animated Background */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(58, 166, 164, 0.1), rgba(41, 116, 116, 0.1));
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(51, 65, 85, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    color: white;
    position: relative;
    z-index: 3;
    padding-top: 6rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(58, 166, 164, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(58, 166, 164, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #3AA6A4;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(58, 166, 164, 0.2);
    transform: translateY(-2px);
}

.badge-text {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: white;
}

.title-line {
    display: block;
    font-size: 3rem;
    opacity: 0;
    animation: slideInUp 1s ease-out forwards;
}

.title-highlight {
    display: block;
    font-size: 5rem;
    animation: slideInUp 1s ease-out 0.3s both;
}

.digital-hollow {
    color: transparent;
    -webkit-text-stroke: 2px #3AA6A4;
    text-stroke: 2px #3AA6A4;
}

.empire-gradient {
    background: linear-gradient(135deg, #3AA6A4, #60E5E0, #3AA6A4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0%, 100% { 
        filter: brightness(1);
        text-shadow: 0 0 10px rgba(58, 166, 164, 0.3);
    }
    50% { 
        filter: brightness(1.2);
        text-shadow: 0 0 20px rgba(58, 166, 164, 0.6);
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 90%;
    color: #cbd5e1;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    background: rgba(58, 166, 164, 0.1);
    transform: translateY(-3px);
    border-color: rgba(58, 166, 164, 0.3);
}

.hero-features .feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3AA6A4, #60E5E0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: white;
    font-size: 0.9rem;
}

.hero-features .feature-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    position: relative;
    background: linear-gradient(135deg, #3AA6A4, #60E5E0);
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(58, 166, 164, 0.4);
}

.btn-shine {
    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.5s ease;
}

.cta-primary:hover .btn-shine {
    left: 100%;
}

.cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(58, 166, 164, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3AA6A4;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-device-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
}

/* Device Mockups */
.device-mockup {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: deviceFloat 6s ease-in-out infinite;
}

.desktop-mockup {
    width: 400px;
    height: 250px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.mobile-mockup {
    width: 120px;
    height: 200px;
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.device-frame {
    width: 100%;
    height: 100%;
    background: #1e293b;
    border-radius: 20px;
    padding: 8px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

/* Website Preview */
.website-preview {
    width: 100%;
    height: 100%;
    padding: 15px;
}

.preview-navbar {
    height: 40px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.nav-logo {
    width: 80px;
    height: 8px;
    background: #3AA6A4;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-item {
    width: 20px;
    height: 4px;
    background: #64748b;
    border-radius: 2px;
}

.preview-hero {
    height: 60px;
    background: linear-gradient(135deg, #3AA6A4, #60E5E0);
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    padding: 15px;
}

.preview-title {
    width: 70%;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    margin-bottom: 8px;
}

.preview-subtitle {
    width: 50%;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    margin-bottom: 10px;
}

.preview-button {
    width: 100px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    position: absolute;
    bottom: 10px;
    right: 15px;
}

.preview-content {
    display: flex;
    gap: 8px;
    height: 40px;
}

.preview-card {
    flex: 1;
    background: #e2e8f0;
    border-radius: 6px;
}

/* Mobile Styles */
.website-preview.mobile .preview-navbar {
    height: 25px;
    padding: 0 10px;
}

.website-preview.mobile .nav-logo {
    width: 50px;
    height: 6px;
}

.website-preview.mobile .nav-toggle {
    width: 20px;
    height: 3px;
    background: #64748b;
    border-radius: 2px;
    position: relative;
}

.website-preview.mobile .nav-toggle::before,
.website-preview.mobile .nav-toggle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: #64748b;
    border-radius: 2px;
}

.website-preview.mobile .nav-toggle::before { top: -6px; }
.website-preview.mobile .nav-toggle::after { top: 6px; }

.website-preview.mobile .preview-hero {
    height: 40px;
    padding: 10px;
}

.website-preview.mobile .preview-title {
    width: 80%;
    height: 8px;
    margin-bottom: 5px;
}

.website-preview.mobile .preview-button {
    width: 60px;
    height: 15px;
    bottom: 8px;
    right: 10px;
}

.website-preview.mobile .preview-content {
    height: 25px;
    gap: 5px;
}

/* Floating Tech Icons */
.floating-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(58, 166, 164, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(58, 166, 164, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3AA6A4;
    animation: techFloat 8s ease-in-out infinite;
}

.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 25%; right: 10%; animation-delay: 1s; }
.icon-3 { top: 60%; left: 0%; animation-delay: 2s; }
.icon-4 { bottom: 30%; right: 5%; animation-delay: 3s; }
.icon-5 { bottom: 10%; left: 15%; animation-delay: 4s; }
.icon-6 { top: 40%; right: 0%; animation-delay: 5s; }

@keyframes techFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-8px) rotate(-5deg); }
    75% { transform: translateY(-12px) rotate(3deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #3AA6A4;
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideInUp 1s ease-out 0.2s both;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.4s both;
}

.animate-slide-up-delay {
    animation: slideInUp 1s ease-out 0.6s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.8s both;
}

.animate-slide-up-delay-3 {
    animation: slideInUp 1s ease-out 1s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 166, 164, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3AA6A4, #60E5E0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3AA6A4, #60E5E0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3AA6A4, #60E5E0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Portfolio Items */
.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, #3AA6A4, #60E5E0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* Modern CTA Section */
.testimonial-cta-modern {
    background: white;
    border-top: 1px solid rgba(58, 166, 164, 0.1);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    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="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.decoration-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 8px 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3.5rem;
    }
    
    .digital-hollow,
    .empire-gradient {
        font-size: inherit;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .desktop-mockup {
        width: 300px;
        height: 180px;
    }
    
    .mobile-mockup {
        width: 100px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 3rem;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .digital-hollow,
    .empire-gradient {
        font-size: inherit;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 1.5rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .digital-hollow,
    .empire-gradient {
        font-size: inherit;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .process-step {
        padding: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .desktop-mockup {
        width: 250px;
        height: 150px;
    }
    
    .mobile-mockup {
        width: 80px;
        height: 120px;
    }
}