/* ============================================
   JOFAMWEBDEV ADOBE ILLUSTRATOR PAGE STYLES
   Version: 1.0
   Author: Jofawebdev
   Description: Custom styles for Adobe Illustrator services page
   ============================================ */

/* ===== CUSTOM PROPERTIES (CSS VARIABLES) ===== */
:root {
    /* Adobe Illustrator Colors */
    --illustrator-orange: #FF6B35;
    --illustrator-orange-light: #FF8E53;
    --illustrator-orange-dark: #E55A2B;
    
    /* Vector Design Colors */
    --vector-blue: #2A9D8F;
    --vector-green: #8AC926;
    --vector-purple: #6A4C93;
    
    /* Neutral Colors */
    --dark-color: #264653;
    --light-color: #F8F9FA;
    --gray-color: #6C757D;
    --white-color: #FFFFFF;
    
    /* Gradients */
    --gradient-illustrator: linear-gradient(135deg, var(--illustrator-orange) 0%, var(--illustrator-orange-light) 100%);
    --gradient-vector: linear-gradient(135deg, var(--vector-blue) 0%, var(--vector-green) 100%);
    --gradient-hero: linear-gradient(135deg, #264653 0%, #2A9D8F 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 12px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 8px 24px rgba(255, 107, 53, 0.2);
    --shadow-xl: 0 12px 32px rgba(255, 107, 53, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-circle: 50%;
}

/* ===== GLOBAL STYLES ===== */
.adobe-illustrator-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container adjustments */
.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Utility Classes */
.max-width-800 {
    max-width: 800px;
}

.text-gradient {
    background: var(--gradient-illustrator);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Adobe Illustrator Color Classes */
.text-illustrator {
    color: var(--illustrator-orange) !important;
}

.bg-illustrator {
    background-color: var(--illustrator-orange) !important;
}

.btn-illustrator {
    background: var(--gradient-illustrator);
    border: none;
    color: var(--white-color);
    transition: all var(--transition-normal);
}

.btn-illustrator:hover {
    background: linear-gradient(135deg, var(--illustrator-orange-dark) 0%, var(--illustrator-orange) 100%);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-illustrator {
    color: var(--illustrator-orange);
    border: 2px solid var(--illustrator-orange);
    background: transparent;
}

.btn-outline-illustrator:hover {
    background: var(--gradient-illustrator);
    color: var(--white-color);
    border-color: transparent;
}

/* ===== HERO SECTION ===== */
.illustrator-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: var(--white-color);
    padding-top: 76px; /* Account for fixed navbar */
    overflow: hidden;
}

/* Vector Pattern Background */
.vector-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(42, 157, 143, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 107, 53, 0.05) 10px, rgba(255, 107, 53, 0.05) 20px);
    z-index: 0;
}

/* Floating Vector Shapes */
.floating-shape {
    position: absolute;
    border-radius: var(--radius-circle);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

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

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

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

.illustrator-hero-section > .container {
    position: relative;
    z-index: 1;
}

/* Illustrator Badges */
.illustrator-badge {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bg-vector {
    background: rgba(42, 157, 143, 0.2);
    border-color: rgba(42, 157, 143, 0.3);
}

.bg-print {
    background: rgba(106, 76, 147, 0.2);
    border-color: rgba(106, 76, 147, 0.3);
}

.illustrator-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--white-color);
}

/* Illustrator Logo Animation */
.illustrator-logo-animation {
    position: relative;
}

.ai-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

/* ===== BENEFITS SECTION ===== */
.benefit-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-illustrator);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 142, 83, 0.1) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--illustrator-orange);
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-illustrator);
    color: var(--white-color);
    transform: rotate(15deg) scale(1.1);
}

/* ===== SERVICES SECTION ===== */
/* Services Tabs */
.nav-pills .nav-link {
    padding: 12px 24px;
    border-radius: 50px;
    margin: 0 5px;
    color: var(--dark-color);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.nav-pills .nav-link.active {
    background: var(--gradient-illustrator);
    color: var(--white-color);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-pills .nav-link:not(.active):hover {
    border-color: var(--illustrator-orange);
    color: var(--illustrator-orange);
}

/* Service Detail Cards */
.service-detail-card {
    padding: 30px;
    background: var(--white-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.service-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.service-features-list li:last-child {
    border-bottom: none;
}

/* Service Visualizations */
.service-visual {
    padding: 30px;
}

.logo-visualization {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.logo-example {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    transition: all var(--transition-normal);
    animation: float 4s ease-in-out infinite;
}

.logo-1 {
    background: linear-gradient(135deg, var(--illustrator-orange) 0%, #FF8E53 100%);
    animation-delay: 0s;
}

.logo-2 {
    background: linear-gradient(135deg, var(--vector-blue) 0%, #4CC9A8 100%);
    animation-delay: 1s;
}

.logo-3 {
    background: linear-gradient(135deg, var(--vector-purple) 0%, #9D4EDD 100%);
    animation-delay: 2s;
}

.logo-example:hover {
    transform: scale(1.1) rotate(10deg);
}

.brand-visualization,
.print-visualization,
.illustration-visualization {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.color-palette {
    display: flex;
    gap: 10px;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.typography {
    text-align: center;
}

.brand-font {
    font-family: 'Arial Black', sans-serif;
    color: var(--dark-color);
}

.brand-font-secondary {
    font-family: 'Georgia', serif;
    color: var(--gray-color);
}

.print-item,
.illustration-example {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    background: var(--gradient-illustrator);
    transition: all var(--transition-normal);
}

.print-item:hover,
.illustration-example:hover {
    transform: scale(1.1) rotate(-5deg);
}

/* ===== FILE FORMATS SECTION ===== */
.file-format-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    height: 100%;
}

.file-format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--illustrator-orange);
}

.format-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
    transition: all var(--transition-normal);
}

.format-extension {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
}

.ai-format {
    background: linear-gradient(135deg, var(--illustrator-orange) 0%, #FF8E53 100%);
}

.eps-format {
    background: linear-gradient(135deg, var(--vector-blue) 0%, #4CC9A8 100%);
}

.pdf-format {
    background: linear-gradient(135deg, #E63946 0%, #FF6B6B 100%);
}

.svg-format {
    background: linear-gradient(135deg, var(--vector-purple) 0%, #9D4EDD 100%);
}

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

/* Additional Formats */
.additional-formats {
    border: 2px dashed var(--illustrator-orange);
}

/* ===== PORTFOLIO SECTION ===== */
.illustrator-portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--white-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.illustrator-portfolio-filter .filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--illustrator-orange);
    background: transparent;
    color: var(--illustrator-orange);
    border-radius: 50px;
    font-weight: 500;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.illustrator-portfolio-filter .filter-btn:hover,
.illustrator-portfolio-filter .filter-btn.active {
    background: var(--gradient-illustrator);
    color: var(--white-color);
    border-color: transparent;
    transform: translateY(-2px);
}

.illustrator-portfolio-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 2px solid transparent;
}

.illustrator-portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--illustrator-orange);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

/* Different portfolio categories */
.tech-logo {
    background: linear-gradient(135deg, var(--illustrator-orange) 0%, #FF8E53 100%);
}

.restaurant-branding {
    background: linear-gradient(135deg, #E76F51 0%, #F4A261 100%);
}

.business-cards {
    background: linear-gradient(135deg, var(--vector-blue) 0%, #4CC9A8 100%);
}

.icon-set {
    background: linear-gradient(135deg, var(--vector-purple) 0%, #9D4EDD 100%);
}

.infographic {
    background: linear-gradient(135deg, #2A9D8F 0%, #8AC926 100%);
}

.packaging {
    background: linear-gradient(135deg, #E63946 0%, #FF6B6B 100%);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 70, 83, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.illustrator-portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 20px;
}

.portfolio-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-top: 10px;
}

.tool-badge {
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--illustrator-orange);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

/* ===== PACKAGES SECTION ===== */
.illustrator-package-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: all var(--transition-normal);
    border: 3px solid transparent;
    position: relative;
    box-shadow: var(--shadow-md);
}

.illustrator-package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.illustrator-package-card.popular {
    border-color: var(--illustrator-orange);
    transform: translateY(-5px);
}

.illustrator-package-card.popular:hover {
    transform: translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--illustrator-orange);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.package-price {
    margin: 15px 0;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--illustrator-orange);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--illustrator-orange);
    line-height: 1;
}

.package-subtitle {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.package-features {
    margin-bottom: 30px;
}

.package-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.package-features ul li:last-child {
    border-bottom: none;
}

/* Add-on Services */
.addon-services {
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.addon-service {
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    height: 100%;
    transition: all var(--transition-normal);
}

.addon-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.addon-price {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--illustrator-orange);
}

/* ===== FAQ SECTION ===== */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.accordion-item:hover {
    border-color: rgba(255, 107, 53, 0.1);
}

.accordion-button {
    background: var(--white-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--illustrator-orange);
    color: var(--white-color);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23264653'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    background: var(--white-color);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    /* Mobile Typography */
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    /* Mobile Hero */
    .illustrator-hero-section {
        min-height: 80vh;
        padding-top: 70px;
    }
    
    /* Hide floating shapes on mobile */
    .floating-shape {
        display: none;
    }
    
    /* Mobile Portfolio Filter */
    .illustrator-portfolio-filter {
        padding: 10px;
    }
    
    .illustrator-portfolio-filter .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Mobile Services Tabs */
    .nav-pills .nav-link {
        padding: 8px 15px;
        margin: 5px;
        font-size: 0.9rem;
    }
    
    /* Mobile Cards */
    .benefit-card,
    .file-format-card,
    .illustrator-package-card {
        padding: 20px;
    }
    
    .benefit-icon,
    .format-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    .portfolio-image {
        height: 200px;
    }
    
    .service-visual {
        padding: 20px 0;
    }
    
    .logo-example {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-scale {
    animation: fadeInScale 0.5s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--illustrator-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--illustrator-orange-dark);
}

/* Focus States for Accessibility */
a:focus,
button:focus,
.btn:focus,
.nav-link:focus,
.accordion-button:focus {
    outline: 2px solid var(--illustrator-orange);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .illustrator-hero-section,
    .illustrator-portfolio-filter,
    .addon-services,
    footer {
        display: none !important;
    }
    
    .container {
        max-width: 100%;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
    
    .btn {
        display: none !important;
    }
}