/* services.css - Ultra-Premium Luxury Tech Services Page */
/* Dark Cinematic | Emerald Green + Champagne Gold | Glassmorphism */

/* Services Hero Section - Premium Cinematic */
.services-hero {
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 30%, var(--emerald-dark) 0%, var(--bg-dark) 100%);
}

/* Cinematic Light Effects */
.services-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at 30% 40%, rgba(26, 92, 62, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 10, 8, 0.9) 100%);
    pointer-events: none;
}

/* Hero Circles - Glass Morphism */
.hero-circle {
    position: absolute;
    background: radial-gradient(circle, rgba(226, 199, 155, 0.08) 0%, rgba(226, 199, 155, 0.02) 100%);
    border-radius: 50%;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(226, 199, 155, 0.1) 0%, transparent 70%);
    animation: floatCircle 20s ease-in-out infinite;
}

.circle-2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(26, 92, 62, 0.15) 0%, transparent 70%);
    animation: floatCircle 25s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 15%;
    background: radial-gradient(circle, rgba(226, 199, 155, 0.06) 0%, transparent 70%);
    animation: floatCircle 18s ease-in-out infinite;
    transform: translateY(-50%);
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(-15px, 15px) rotate(240deg);
    }
}

.services-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.services-hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.services-hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Premium Glass Section Gradient */
.services-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* Services Bubbles - Premium Floating Elements */
.services-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.service-bubble {
    position: absolute;
    background: radial-gradient(circle, rgba(226, 199, 155, 0.06) 0%, rgba(226, 199, 155, 0.01) 100%);
    border-radius: 50%;
    animation: floatBubbleService 15s ease-in-out infinite;
    pointer-events: none;
    backdrop-filter: blur(3px);
}

.service-bubble:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 5%;
    top: 15%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.service-bubble:nth-child(2) {
    width: 160px;
    height: 160px;
    left: 18%;
    top: 55%;
    animation-duration: 22s;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(226, 199, 155, 0.04) 0%, transparent 70%);
}

.service-bubble:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 38%;
    top: 80%;
    animation-duration: 14s;
    animation-delay: 4s;
}

.service-bubble:nth-child(4) {
    width: 180px;
    height: 180px;
    left: 58%;
    top: 20%;
    animation-duration: 25s;
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(26, 92, 62, 0.08) 0%, transparent 70%);
}

.service-bubble:nth-child(5) {
    width: 110px;
    height: 110px;
    left: 72%;
    top: 50%;
    animation-duration: 19s;
    animation-delay: 3s;
}

.service-bubble:nth-child(6) {
    width: 65px;
    height: 65px;
    left: 85%;
    top: 35%;
    animation-duration: 12s;
    animation-delay: 5s;
}

.service-bubble:nth-child(7) {
    width: 130px;
    height: 130px;
    left: 10%;
    top: 88%;
    animation-duration: 20s;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(226, 199, 155, 0.05) 0%, transparent 70%);
}

.service-bubble:nth-child(8) {
    width: 90px;
    height: 90px;
    left: 48%;
    top: 10%;
    animation-duration: 16s;
    animation-delay: 2.5s;
}

.service-bubble:nth-child(9) {
    width: 140px;
    height: 140px;
    left: 68%;
    top: 72%;
    animation-duration: 21s;
    animation-delay: 4.5s;
    background: radial-gradient(circle, rgba(26, 92, 62, 0.06) 0%, transparent 70%);
}

.service-bubble:nth-child(10) {
    width: 70px;
    height: 70px;
    left: 32%;
    top: 42%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

@keyframes floatBubbleService {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-120px) translateX(25px) rotate(360deg);
        opacity: 0;
    }
}

/* Services Grid - Premium Glass Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Service Card - Ultra Premium */
.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: right;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-light);
    box-shadow: var(--shadow-glow);
}

/* Service Image - Premium */
.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(226, 199, 155, 0.05) 0%, rgba(226, 199, 155, 0.02) 100%);
    border: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.service-card:hover .service-image {
    border-color: var(--glass-border-light);
}

.service-image img {
    width: auto;
    height: 200px;
    object-fit: contain;
    transition: var(--transition-base);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* Service Title */
.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

/* Service Description */
.service-description {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Price Styles - Premium */
.service-price {
    background: linear-gradient(135deg, rgba(226, 199, 155, 0.08) 0%, rgba(226, 199, 155, 0.03) 100%);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    margin: 1rem 0;
    text-align: center;
    transition: var(--transition-base);
}

.service-card:hover .service-price {
    border-color: var(--glass-border-light);
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-left: 0.5rem;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--champagne-primary);
}

.price-currency {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-right: 0.25rem;
}

/* Service Features */
.service-features {
    list-style: none;
    text-align: right;
    margin: 1.25rem 0;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 8px 0;
    transition: var(--transition-fast);
}

.service-features li:hover {
    transform: translateX(-4px);
    color: var(--champagne-primary);
}

.service-features li i {
    color: var(--champagne-primary);
    font-size: 0.85rem;
    width: 20px;
    flex-shrink: 0;
}

/* Service CTA Button */
.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 92, 62, 0.9) 0%, rgba(26, 92, 62, 0.5) 100%);
    color: var(--champagne-primary);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 199, 155, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.service-cta:hover {
    background: var(--gradient-gold);
    color: var(--emerald-deep);
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(226, 199, 155, 0.3);
}

/* CTA Section - Premium */
.services-cta {
    padding: 80px 0;
    background: radial-gradient(ellipse at 50% 50%, var(--emerald-dark) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, rgba(226, 199, 155, 0.02) 0px, rgba(226, 199, 155, 0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--emerald-deep);
    padding: 14px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    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-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(226, 199, 155, 0.3);
    color: var(--emerald-dark);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-image img {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 30px 0 40px;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-description {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .services-grid-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-image img {
        height: 160px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .services-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .circle-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.6rem;
    }
    
    .services-hero-description {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-image img {
        height: 220px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.75rem;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .service-features li {
        font-size: 0.7rem;
        padding: 6px 0;
    }
    
    .service-cta {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-description {
        font-size: 0.85rem;
        padding: 0 20px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Animation Delays for Cards */
.service-card:nth-child(1) { animation: fadeInUp 0.5s ease backwards; animation-delay: 0.05s; }
.service-card:nth-child(2) { animation: fadeInUp 0.5s ease backwards; animation-delay: 0.1s; }
.service-card:nth-child(3) { animation: fadeInUp 0.5s ease backwards; animation-delay: 0.15s; }
.service-card:nth-child(4) { animation: fadeInUp 0.5s ease backwards; animation-delay: 0.2s; }
.service-card:nth-child(5) { animation: fadeInUp 0.5s ease backwards; animation-delay: 0.25s; }
.service-card:nth-child(6) { animation: fadeInUp 0.5s ease backwards; animation-delay: 0.3s; }
.service-card:nth-child(7) { animation: fadeInUp 0.5s ease backwards; animation-delay: 0.35s; }

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