/* Performance Marketing Page Specific Styles */

/* Performance Hero */
.performance-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.pexels.com/photos/590022/pexels-photo-590022.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.performance-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
}

.performance-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-badge i {
    color: #3b82f6;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    font-size: 18px;
    color: white;
}

.metric-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #06b6d4;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Performance Chart Visualization */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.performance-chart {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 1.5rem;
    height: 200px;
    margin-bottom: 1rem;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.bar-fill {
    width: 40px;
    background: linear-gradient(to top, #3b82f6, #06b6d4);
    border-radius: 4px 4px 0 0;
    transition: height 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.bar-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

.bar-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #06b6d4;
}

.chart-legend {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Recognition Showcase */
.recognition-showcase {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.recognition-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.recognition-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.recognition-item.featured {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
}

.recognition-item.featured:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.recognition-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recognition-item.featured .recognition-icon {
    background: rgba(255, 255, 255, 0.2);
}

.recognition-icon i {
    font-size: 20px;
    color: #3b82f6;
}

.recognition-item.featured .recognition-icon i {
    color: white;
}

.recognition-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.recognition-item.featured .recognition-content h3 {
    color: white;
}

.year {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.recognition-item.featured .year {
    color: rgba(255, 255, 255, 0.8);
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b82f6;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

/* Cycle Diagram */
.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cycle-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.cycle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    animation: rotate 20s linear infinite;
}

.cycle-center i {
    font-size: 20px;
    margin-bottom: 0.25rem;
}

.cycle-step {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    color: #3b82f6;
    animation: float 4s ease-in-out infinite;
}

.cycle-step[data-step="1"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.cycle-step[data-step="2"] {
    top: 20%;
    right: 0;
    animation-delay: 0.8s;
}

.cycle-step[data-step="3"] {
    bottom: 20%;
    right: 0;
    animation-delay: 1.6s;
}

.cycle-step[data-step="4"] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2.4s;
}

.cycle-step[data-step="5"] {
    top: 20%;
    left: 0;
    animation-delay: 3.2s;
}

.step-icon {
    font-size: 16px;
    margin-bottom: 0.25rem;
}

/* Services Showcase */
.services-showcase {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-showcase-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.card-image {
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-image::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="service-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23service-pattern)"/></svg>');
}

.service-showcase-card .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.service-showcase-card .service-icon i {
    font-size: 28px;
    color: white;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.card-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.case-study-link:hover {
    gap: 1rem;
    color: #2563eb;
}

/* Client Partnership */
.client-partnership {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partnership-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partnership-text h3 {
    font-size: 1.3rem;
    color: #06b6d4;
    margin-bottom: 1.5rem;
}

.partnership-text p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
}

.highlight-item i {
    color: #06b6d4;
    font-size: 1.1rem;
}

/* Partnership Diagram */
.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.center-node i {
    font-size: 24px;
    margin-bottom: 0.25rem;
}

.orbit-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #06b6d4;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
    animation: orbit 15s linear infinite;
}

.orbit-node[data-orbit="1"] {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-node[data-orbit="2"] {
    top: 30%;
    right: 10%;
    animation-delay: 3.75s;
}

.orbit-node[data-orbit="3"] {
    bottom: 30%;
    right: 10%;
    animation-delay: 7.5s;
}

.orbit-node[data-orbit="4"] {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 11.25s;
}

.orbit-node i {
    font-size: 18px;
    margin-bottom: 0.25rem;
    color: #06b6d4;
}

/* Client Logos */
.client-logos {
    padding: 80px 0;
    background: #f8fafc;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.logo-placeholder {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    min-width: 150px;
    text-align: center;
}

.logo-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #3b82f6;
}

/* Innovation Quote */
.innovation-quote {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    position: relative;
    overflow: hidden;
}

.innovation-quote::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="quote-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><path d="M0,15 L30,15 M15,0 L15,30" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23quote-pattern)"/></svg>');
}

.quote-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.quote-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.innovation-icons {
    position: relative;
    width: 200px;
    height: 200px;
}

.icon-orbit {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.orbit-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.orbit-icon:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-icon:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.orbit-icon:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-icon:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.orbit-icon i {
    font-size: 18px;
    color: white;
}

/* Contact Section Enhancements */
.contact .contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
}

.contact .highlight-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* Animations */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Chart Bar Animation */
.chart-bar[data-value="85"] .bar-fill {
    height: 85%;
}

.chart-bar[data-value="92"] .bar-fill {
    height: 92%;
}

.chart-bar[data-value="78"] .bar-fill {
    height: 78%;
}

.chart-bar[data-value="95"] .bar-fill {
    height: 95%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .performance-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-metrics {
        justify-content: center;
        gap: 1rem;
    }
    
    .metric-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .philosophy-content,
    .partnership-content,
    .quote-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .cycle-diagram,
    .partnership-diagram,
    .innovation-icons {
        width: 250px;
        height: 250px;
    }
    
    .recognition-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .chart-container {
        gap: 1rem;
        height: 150px;
    }
    
    .bar-fill {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title,
    .section-header h2,
    .philosophy-text h2,
    .partnership-text h2 {
        font-size: 2rem;
    }
    
    .performance-chart {
        padding: 1rem;
    }
    
    .chart-container {
        height: 120px;
        gap: 0.75rem;
    }
    
    .bar-fill {
        width: 25px;
    }
    
    .metric-item {
        padding: 0.75rem;
    }
    
    .cycle-diagram,
    .partnership-diagram {
        width: 200px;
        height: 200px;
    }
    
    .cycle-step,
    .orbit-node {
        width: 50px;
        height: 50px;
        font-size: 0.6rem;
    }
    
    .center-node {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    
    blockquote {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .performance-hero,
    .client-partnership,
    .innovation-quote {
        background: white !important;
        color: black !important;
    }
    
    .hero-visual,
    .philosophy-visual,
    .partnership-visual,
    .quote-visual {
        display: none;
    }
}
