/* ==========================================================================
   PREMIUM ENHANCEMENTS - Technology Company Edition
   ========================================================================== */

/* ==========================================================================
   LOGO STYLING - Optimized for Lemon Green Logo
   Current Color Scheme: Lemon Green (#C7EA46 / #BFDB38 / #A8D030)
   Font Family: 'Inter' (Primary), Fallback: -apple-system, Segoe UI
   ========================================================================== */

/* Logo Container - Clean without background */
.site-logo {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* Lemon Green Logo Image Styling */
.parous-logo {
    max-height: 80px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.parous-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

@media (max-width: 768px) {
    .parous-logo {
        max-height: 60px;
    }
}

/* Service Badge Styling */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #C7EA46, #A8D030);
    color: var(--dark-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(199, 234, 70, 0.3);
    z-index: 5;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(199, 234, 70, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(199, 234, 70, 0.5);
    }
}

.service-card-premium {
    position: relative;
}

/* Hero Section - Premium Tech */
.hero-tech {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(199, 234, 70, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(191, 219, 56, 0.12) 0%, transparent 50%);
    z-index: 2;
}

.hero-tech .container {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, #C7EA46, #BFDB38, #A8D030);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.typed-text {
    position: relative;
    display: inline-block;
}

.typed-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 1s infinite;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 35px;
}

.btn-glow {
    background: linear-gradient(135deg, #C7EA46, #A8D030);
    color: var(--dark-color);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(199, 234, 70, 0.4);
    transition: var(--transition);
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(199, 234, 70, 0.7);
}

.btn-outline-glow {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 32px;
    backdrop-filter: blur(10px);
}

.btn-outline-glow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.hero-trust {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: rgba(67, 233, 123, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #43e97b;
    font-size: 0.8rem;
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.2);
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
    animation-duration: 15s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 10s;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-2xl);
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(199, 234, 70, 0.5);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(199, 234, 70, 0.3);
}

.card-1 {
    top: 1%;
    left: 1%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 0%;
    animation-delay: 1s;
}

.card-3 {
    top: 25%;
    left: 3%;
    animation-delay: 2s;
}

.card-4 {
    top: 45%;
    right: 6%;
    animation-delay: 1.5s;
}

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

.floating-card .card-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.floating-card .card-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.floating-card .card-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.floating-card .card-text span {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #C7EA46;
    font-weight: 500;
}

.floating-card .card-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #C7EA46, #A8D030);
    color: #0a0e27;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(199, 234, 70, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%) translateY(-3px);
}

.scroll-arrow {
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Tech Stack Section */
.tech-stack-section {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.tech-stack-content {
    text-align: center;
}

.stack-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.tech-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.6;
    transition: var(--transition);
    cursor: pointer;
}

.tech-logo:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Premium Services Section */
.services-premium {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C7EA46, #A8D030);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card-premium {
    perspective: 1000px;
}

.service-card-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-premium:hover .service-card-inner {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(102, 126, 234, 0.2);
}

.service-icon-premium {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.service-icon-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: var(--transition);
}

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

.service-card-premium h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card-premium p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Premium Stats Section */
.stats-section-premium {
    background: linear-gradient(135deg, #C7EA46 0%, #A8D030 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card-premium {
    text-align: center;
    color: var(--white);
}

.stat-card-premium .stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.stat-card-premium .stat-number {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-premium .stat-number::after {
    content: '+';
}

.stat-card-premium .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.stat-card-premium .stat-sublabel {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Premium About Section */
.about-premium {
    padding: 120px 0;
    background: var(--white);
}

.about-content-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-premium .image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 30px;
}

.floating-element {
    position: absolute;
    background: var(--white);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: var(--shadow-xl);
    animation: float 4s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: -10%;
}

.element-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.element-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.element-icon {
    font-size: 1.5rem;
}

.element-text {
    font-weight: 600;
    color: var(--text-dark);
}

.about-text-premium .lead-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.expertise-tags .tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 60px;
    }
    
    .about-content-premium {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-grid-premium {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .tech-logos {
        gap: 20px;
    }
    
    .floating-card {
        padding: 15px 20px;
    }
}
