/* Import base styles from graphic design */
@import url('graphic-design-style.css');

/* Website Design Hero Section Specific Styles */
.website-hero-section {
    background: #F9F6F0;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.website-hero-section .hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.website-hero-section .hero-text {
    flex: 1;
    max-width: 500px;
}

.website-hero-section .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.website-hero-section .hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.website-hero-section .hero-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Website Mockup Styles */
.website-mockup {
    position: relative;
    width: 400px;
    height: 300px;
}

.mockup-devices {
    position: relative;
    width: 100%;
    height: 100%;
}

.desktop-mockup {
    position: absolute;
    top: 0;
    left: 20px;
    width: 300px;
    height: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    z-index: 2;
}

.screen-header {
    background: #f5f5f5;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.screen-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screen-dots .dot.red { background: #ff5f57; }
.screen-dots .dot.yellow { background: #ffbd2e; }
.screen-dots .dot.green { background: #28ca42; }

.screen-content {
    padding: 20px;
    height: calc(100% - 60px);
}

.content-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.block {
    border-radius: 8px;
}

.block-1 { background: #F5C842; }
.block-2 { background: #FF6B35; }
.block-3 { background: #4A90E2; }
.block-4 { background: #7B68EE; }

/* Mobile Mockup */
.mobile-mockup {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 120px;
    height: 200px;
    background: #333;
    border-radius: 20px;
    padding: 8px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    padding: 16px 12px;
}

.mobile-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.mobile-block {
    border-radius: 6px;
    flex: 1;
}

.mobile-block-1 { background: #F5C842; }
.mobile-block-2 { background: #4A90E2; }

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.float-element.element-1 {
    width: 60px;
    height: 60px;
    background: #FFE4B5;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.float-element.element-2 {
    width: 40px;
    height: 40px;
    background: #FFB6C1;
    top: 60%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.float-element.element-3 {
    width: 50px;
    height: 50px;
    background: #E6E6FA;
    top: 20%;
    right: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Services Overview Section */
.services-overview-section {
    background: #F9F6F0;
    padding: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.services-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    max-width: 600px;
    margin: 0;
}

.see-examples-btn {
    background: #F5C842;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.see-examples-btn:hover {
    background: #e6b83a;
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF5E6;
    border-radius: 12px;
}

.service-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.service-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Create simple icon placeholders since we don't have the actual SVG files */
.service-icon::before {
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: block;
}

.service-card:nth-child(1) .service-icon::before {
    background: linear-gradient(135deg, #F5C842, #e6b83a);
}

.service-card:nth-child(2) .service-icon::before {
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
}

.service-card:nth-child(3) .service-icon::before {
    background: linear-gradient(135deg, #4A90E2, #3a7bc8);
}

.service-card:nth-child(4) .service-icon::before {
    background: linear-gradient(135deg, #7B68EE, #6b5ce7);
}

.service-card:nth-child(5) .service-icon::before {
    background: linear-gradient(135deg, #50C878, #45b56b);
}

/* Premium Pricing Section */
.premium-pricing-section {
    background: #F9F6F0;
    padding: 80px 0;
}

.pricing-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-tab {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-tab.active {
    background: #F5C842;
    border-color: #F5C842;
    color: #1a1a1a;
}

.pricing-tab.discount {
    position: relative;
}

.discount-label {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF6B35;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
}

.premium-pricing-card {
    background: linear-gradient(135deg, #F5C842 0%, #FFB347 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #1a1a1a;
}

.pricing-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-badge {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
}

.pricing-badge.creative {
    color: #2ECC71;
}

.pricing-badge.popular {
    background: #FF6B35;
    color: white;
}

.pricing-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #1a1a1a;
}

.pricing-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 32px 0;
    color: #2c2c2c;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1a1a1a;
}

.pricing-features-grid .feature-item i {
    background: #2ECC71;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.pricing-cta {
    position: absolute;
    bottom: 40px;
    right: 40px;
    text-align: center;
}

.get-started-btn {
    background: #fff;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .website-hero-section .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .website-hero-section .hero-title {
        font-size: 36px;
    }
    
    .website-hero-section .hero-description {
        font-size: 16px;
    }
    
    .website-mockup {
        width: 300px;
        height: 250px;
    }
    
    .desktop-mockup {
        width: 240px;
        height: 160px;
        left: 30px;
    }
    
    .mobile-mockup {
        width: 100px;
        height: 160px;
        bottom: 10px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .pricing-tab {
        width: 200px;
        text-align: center;
    }
    
    .premium-pricing-card {
        padding: 24px;
    }
    
    .pricing-title {
        font-size: 24px;
    }
    
    .pricing-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-cta {
        position: static;
        margin-top: 24px;
        text-align: center;
    }
    
    .price {
        font-size: 28px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background-color: #fff !important;
        flex-direction: column !important;
        padding: 4rem 1rem 2rem !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        display: flex !important;
        align-items: stretch !important;
    }
    
    .navbar .nav-menu.mobile-active {
        right: 0 !important;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: #333;
        border-bottom: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none !important;
        background: #f8f8f8 !important;
        margin: 0 !important;
        padding: 0.5rem 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-height: 60vh !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow-y: auto !important;
        border-left: 3px solid #F5C842 !important;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .capabilities-dropdown {
        width: 100%;
        max-height: none;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 0;
    }
    
    .service-column {
        width: 100%;
    }
    
    .service-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .capabilities-actions {
        padding: 1rem;
        border-top: 1px solid #e0e0e0;
    }
    
    .contact-section {
        display: none;
    }
}