/* ==============================================
   SERVICES PAGE STYLES - ADVANCED & ANIMATED
   Matching about.css design patterns
   ============================================== */
/* --- SERVICES HERO CORE --- */
.services-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--light);
    overflow-x: hidden;
    padding: 100px 0;
    width: 100%;
}
.home-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
   
}
.hero-background-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(at 0% 0%, rgba(41, 99, 116, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(220, 44, 85, 0.08) 0px, transparent 50%);
    z-index: 1;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Text Styles */
.cyber-badge {
    background: rgba(41, 99, 116, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--secondary-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.services-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--secondary-dark);
    margin: 20px 0;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Metrics/Stats */
.services-stats-row {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.stat-glass-box {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(41, 99, 116, 0.1);
    min-width: 120px;
    text-align: center;
}

.stat-number { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.stat-plus { font-size: 1.5rem; color: var(--primary); font-weight: 800;}

/* Buttons */
.services-cta-group { display: flex; gap: 20px; margin-bottom: 40px; }

.btn-cyber-primary {
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(220, 44, 85, 0.2);
    transition: 0.3s;
}

.btn-cyber-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(220, 44, 85, 0.3); }

/* --- VISUALS (Right Side) --- */
.services-hero-visual { position: relative; perspective: 1000px; }

.main-3d-card {
    background: var(--secondary-dark);
    height: 350px;
    width: 280px;
    border-radius: 30px;
    padding: 30px;
    color: white;
    position: relative;
    transform: rotateY(-15deg) rotateX(10deg);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    animation: floatCard 6s infinite ease-in-out;
}

@keyframes floatCard {
    0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); }
    50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-20px); }
}

.ai-visualizer {
    position: absolute;
    top: 40px; left: 50%;
    transform: translateX(-50%);
}

.pulse-core {
    width: 60px; height: 60px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(20px);
    animation: corePulse 2s infinite;
}

@keyframes corePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Orbiting Badges */
.floating-orbit-badge {
    position: absolute;
    width: 50px; height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    color: var(--primary);
    font-size: 1.2rem;
    z-index: 20;
}

.b-1 { top: 10%; right: 10%; animation: orbit 8s infinite linear; }
.b-2 { bottom: 20%; left: -10%; animation: orbit 12s infinite linear reverse; }
.b-3 { top: 50%; right: -15%; animation: orbit 10s infinite linear; }

@keyframes orbit {
    from { transform: rotate(0deg) translateX(20px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .services-hero-grid {
        gap: 40px;
    }
    
    .services-hero-title {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }
    
    .stat-glass-box {
        min-width: 100px;
        padding: 15px;
    }
    
    .main-3d-card {
        height: 300px;
        width: 250px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .services-hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px;
    }
    .services-badge-wrapper {
	margin-top: 18% !important;
}
    .services-stats-row { 
        justify-content: center; 
        flex-wrap: wrap;
    }
    
    .services-cta-group { 
        justify-content: center; 
        flex-wrap: wrap;
    }
    
    .services-hero-visual { 
        margin-top: 50px; 
        display: flex;
        justify-content: center;
    }
    
    .cyber-badge {
        display: inline-flex;
        margin: 0 auto;
    }
    
    .services-hero-title {
        text-align: center;
    }
    
    .services-hero-desc {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Large (481px - 767px) */
@media (max-width: 767px) {
    .services-hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    .services-badge-wrapper {
	margin-top: 18% !important;
}
    .home-container {
        padding: 0 20px;
    }
    
    .services-hero-grid {
        gap: 30px;
    }
    
    .services-hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin: 15px 0;
    }
    
    .gradient-text {
        font-size: inherit;
    }
    
    .services-stats-row {
        gap: 15px;
        margin: 30px 0;
    }
    
    .stat-glass-box {
        min-width: 90px;
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-plus {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .services-cta-group {
        gap: 15px;
        margin-bottom: 30px;
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-cyber-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .services-hero-visual {
        margin-top: 30px;
    }
    
    .main-3d-card {
        height: 280px;
        width: 240px;
        margin: 0 auto;
    }
    
    .floating-orbit-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .b-1 { top: 5%; right: 5%; }
    .b-2 { bottom: 15%; left: -5%; }
    .b-3 { top: 50%; right: -10%; }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .services-hero-section {
        padding: 60px 0 40px;
    }
    .services-badge-wrapper {
	margin-top: 18% !important;
}
    .home-container {
        padding: 0 15px;
    }
    
    .services-hero-grid {
        gap: 25px;
    }
    
    .cyber-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .services-hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin: 12px 0;
    }
    
    .services-hero-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .services-stats-row {
        gap: 10px;
        margin: 25px 0;
        flex-wrap: wrap;
    }
    
    .stat-glass-box {
        min-width: 75px;
        padding: 10px 8px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-plus {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .services-cta-group {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-cyber-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: auto;
        min-width: 180px;
    }
    
    .services-hero-visual {
        margin-top: 20px;
    }
    
    .main-3d-card {
        height: 250px;
        width: 210px;
        padding: 20px;
    }
    
    .pulse-core {
        width: 40px;
        height: 40px;
    }
    
    .floating-orbit-badge {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .b-1 { top: 0%; right: 0%; }
    .b-2 { bottom: 10%; left: -8%; }
    .b-3 { display: none; } /* Hide third badge on very small screens */
}

/* Extra Small Devices (below 360px) */
@media (max-width: 360px) {
    .services-hero-section {
        padding: 50px 0 30px;
    }
    .services-badge-wrapper {
	margin-top: 18% !important;
}
    .services-hero-title {
        font-size: 1.3rem;
    }
    
    .stat-glass-box {
        min-width: 65px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .btn-cyber-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 160px;
    }
    
    .main-3d-card {
        height: 220px;
        width: 190px;
    }
    
    .floating-orbit-badge {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .b-2 { display: none; } /* Hide second badge on extremely small screens */
}

/* Landscape Mode for Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .services-hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    .services-badge-wrapper {
	margin-top: 18% !important;
}
    .services-hero-grid {
        gap: 20px;
    }
    
    .services-hero-title {
        font-size: 1.6rem;
        margin: 10px 0;
    }
    
    .services-stats-row {
        margin: 15px 0;
    }
    
    .services-hero-visual {
        margin-top: 0;
    }
    
    .main-3d-card {
        height: 200px;
        width: 180px;
    }
}

/* Fix for very tall screens */
@media (min-height: 900px) and (max-width: 768px) {
    .services-hero-section {
        min-height: 80vh;
    }
    .services-badge-wrapper {
	margin-top: 18% !important;
}
}

/* Ensure no horizontal scroll on any device */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .services-hero-section {
        overflow-x: hidden;
        width: 100%;
    }
    
    .home-container {
        overflow-x: hidden;
    }
}

/* Fix for broken animations on mobile - preserve but optimize */
@media (prefers-reduced-motion: reduce) {
    .services-hero-section * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* End of Services Hero Responsive Fixes */

.neuro-interface-section {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--light); /* Your site background */
    perspective: 1500px;
    overflow: hidden;
}

/* 3D Floor Grid */
.interface-grid-floor {
    position: absolute;
    bottom: -10%; left: -50%; width: 200%; height: 50%;
    background-image: 
        linear-gradient(rgba(41, 99, 116, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 99, 116, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(75deg);
    z-index: 1;
}

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

/* Holographic Module */
.protocol-module {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    transform: rotateY(-15deg) rotateX(5deg);
    overflow: hidden;
}

.protocol-module.active, .protocol-module:hover {
    transform: rotateY(0deg) rotateX(0deg) translateZ(40px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.1);
}

.module-icon {
    width: 60px; height: 60px;
    background: var(--dark);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.serial {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 2px;
}

/* Data Stream Bars */
.data-stream { margin: 25px 0; }
.stream-item {
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bar {
    width: 60%; height: 4px;
    background: var(--gray-light);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.bar::after {
    content: '';
    position: absolute;
    left: 0; top: 0; height: 100%; width: 0;
    background: var(--accent);
    transition: width 1.5s ease-out;
}
.active .bar::after { width: 85%; }

/* Shimmer Animation */
.module-shimmer {
    position: absolute;
    top: -100%; left: -100%; width: 300%; height: 300%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.3) 50%, transparent 55%);
    animation: shimmer 6s infinite linear;
}

@keyframes shimmer { to { transform: translate(50%, 50%); } }
/* ==================== SERVICES HERO ==================== */
.services-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(237, 237, 206, 0.1) 0%,
        rgba(41, 99, 116, 0.08) 50%,
        rgba(220, 44, 85, 0.05) 100%);
    overflow: hidden;
    padding-top: 10%;
}

.services-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.services-hero-section .floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.1;
    filter: blur(40px);
    animation: floatShape 25s ease-in-out infinite alternate;
}

.services-hero-section .shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
}

.services-hero-section .shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.services-hero-section .shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.quick-services {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(var(--light-rgb), 0.3);
}

.quick-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.quick-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quick-tag {
    padding: 0.375rem 0.75rem;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-base);
}

.quick-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Service 3D Card */
.service-3d-card {
    perspective: 1000px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.service-3d-card .card-inner {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-3d-card:hover .card-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

.service-animation {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    overflow: hidden;
}

.code-line {
    height: 4px;
    background: rgba(220, 44, 85, 0.5);
    margin: 20px;
    border-radius: 2px;
    position: relative;
    animation: codeTyping 2s ease-in-out infinite;
}

.code-line:nth-child(1) { width: 80%; animation-delay: 0s; }
.code-line:nth-child(2) { width: 60%; animation-delay: 0.5s; }
.code-line:nth-child(3) { width: 70%; animation-delay: 1s; }

@keyframes codeTyping {
    0%, 100% { background: rgba(220, 44, 85, 0.5); }
    50% { background: rgba(220, 44, 85, 1); }
}

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: aiPulse 2s ease-out infinite;
}

@keyframes aiPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.service-highlight {
    padding: var(--space-md);
    text-align: center;
    background: var(--white);
}

.service-tech {
    padding: 1rem var(--space-md);
    border-top: 1px solid rgba(var(--light-rgb), 0.3);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Floating Service Badges */
.floating-service-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.service-badge {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    animation: floatBadge 3s ease-in-out infinite;
    opacity: 0;
    animation-delay: var(--delay);
    border: 1px solid rgba(var(--light-rgb), 0.3);
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.service-badge:nth-child(1) { top: 10%; left: 5%; }
.service-badge:nth-child(2) { top: 60%; right: 5%; }
.service-badge:nth-child(3) { bottom: 20%; left: 10%; }

.service-badge i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ==============================================
   ADDITIONAL RESPONSIVE FIXES FOR NEURO SECTION
   ============================================== */

@media (max-width: 768px) {
    .neuro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .protocol-module {
        padding: 25px;
        transform: rotateY(0deg) rotateX(0deg);
    }
    
    .protocol-module.active, .protocol-module:hover {
        transform: translateZ(20px) scale(1.01);
    }
    
    .module-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .interface-grid-floor {
        display: none;
    }
}

@media (max-width: 480px) {
    .neuro-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .protocol-module {
        padding: 20px;
    }
    
    .stream-item {
        font-size: 0.65rem;
    }
    
    .serial {
        font-size: 0.55rem;
    }
}

/* ==============================================
   RESPONSIVE FIXES FOR FLOATING BADGES
   ============================================== */

@media (max-width: 768px) {
    .floating-service-badges {
        display: none;
    }
}

@media (max-width: 480px) {
    .quick-tags {
        justify-content: center;
    }
    
    .quick-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .service-3d-card {
        max-width: 100%;
    }
    
    .service-animation {
        height: 150px;
    }
    
    .ai-pulse {
        width: 40px;
        height: 40px;
    }
    
    .code-line {
        margin: 15px;
    }
}

/* Fix for hero content on tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: var(--space-lg);
    }
    
    .services-hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

/* Ensure all content is readable on all devices */
@media (max-width: 768px) {
    .services-hero-desc {
        padding: 0 10px;
    }
    
    .btn-cyber-primary {
        white-space: normal;
        word-break: keep-all;
    }
}

/* ==================== SERVICES GRID ==================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.service-card {
    border-radius: 32px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Reference Image Color Palette */
.theme-pink { background-color: #ffffff; }
/* .theme-blue { background-color: #eaf6fc; }
.theme-yellow { background-color: #fff9e6; }
.theme-green { background-color: #ecf8f1; } */

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Internal Layout */
.card-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-content-left { flex: 1; padding-right: 20px; }

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.service-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Meta & Progress */
.mini-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.mini-meta span {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
}

.progress-container { width: 100%; }
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #444;
}

.progress-bar {
    height: 6px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.progress-fill {
    height: 100%;
    background: #000;
    border-radius: 10px;
}

/* Rotating Icon Animation */
.card-visual-right {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-icon {
    font-size: 70px;
    color: rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .rotating-icon {
    transform: rotate(360deg);
    color: #000;
    font-size: 75px;
}

/* Footer Section */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-meta { font-size: 14px; color: #666; }

.btn-black {
    background: #111;
    color: #fff;
    padding: 12px 30px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-black:hover {
    background: #333;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .card-inner { flex-direction: column-reverse; }
    .card-visual-right { width: 100%; margin-bottom: 20px; }
}
/* ==================== SERVICE DETAILS ==================== */
.service-details-section {
    padding: var(--space-xl) 0;
}

.details-accordion {
    max-width: 1000px;
    margin: var(--space-lg) auto 0;
}

.details-accordion .accordion-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(var(--light-rgb), 0.5);
    transition: all var(--transition-smooth);
}

.details-accordion .accordion-item.active {
    box-shadow: var(--shadow-xl);
}

.details-accordion .accordion-header {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), transparent);
}

.details-accordion .accordion-header:hover {
    background-color: rgba(var(--light-rgb), 0.1);
}

.details-accordion .accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.details-accordion .accordion-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.accordion-title-content {
    flex: 1;
}

.accordion-title-content h3 {
    margin-bottom: 0.25rem;
}

.accordion-subtitle {
    font-size: 0.875rem;
    color: var(--gray);
}

.details-accordion .accordion-indicator {
    transition: transform var(--transition-smooth);
}

.details-accordion .accordion-item.active .accordion-indicator {
    transform: rotate(180deg);
}

.details-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.details-accordion .accordion-item.active .accordion-content {
    max-height: 2000px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--secondary);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.step-content p {
    color: var(--gray);
    font-size: 0.875rem;
}

.technology-stack {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(var(--light-rgb), 0.3);
}

.technology-stack h4 {
    margin-bottom: var(--space-sm);
    color: var(--secondary);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(var(--secondary-rgb), 0.1);
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.tech-tag:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.methodology-item {
    text-align: center;
    padding: var(--space-md);
    background: rgba(var(--light-rgb), 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--light-rgb), 0.2);
}

.methodology-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin: 0 auto var(--space-sm);
}

.methodology-item h5 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.methodology-item p {
    color: var(--gray);
    font-size: 0.875rem;
}

.workflow-steps {
    position: relative;
}

.workflow-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.3;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
}

.step-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    min-width: 150px;
}

.step-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin-top: 1rem;
    position: relative;
}

.step-line::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.workflow-step p {
    flex: 1;
    color: var(--gray);
    padding-top: 0.5rem;
}
/* --- PROCESS MODERNIZATION --- */
.process-workflow-section {
    position: relative;
    padding: var(--space-xl) 0;
    /* background: var(--light); */
    overflow: hidden;
}

.circuit-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--secondary-glow) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 1;
}

.workflow-container {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
}

/* The Animated Pulse Track */
.workflow-track {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(41, 99, 116, 0.1);
    z-index: 2;
}

.workflow-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: trackPulse 4s infinite linear;
}

@keyframes trackPulse {
    0% { left: -200px; }
    100% { left: 100%; }
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 10;
}

/* Hexagonal Step Design */
.step-hex-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s var(--transition-smooth);
}

.step-hex-bg {
    position: absolute;
    inset: 0;
    background: var(--white);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border: 1px solid var(--secondary-light);
    box-shadow: var(--shadow-md);
    z-index: -1;
}

.step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    position: absolute;
    top: 15px;
}

.step-icon-modern {
    font-size: 1.8rem;
    color: var(--secondary);
    transition: 0.3s;
}

/* Glassmorphism Card */
.step-glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.workflow-step-modern:hover .step-glass-card {
    background: white;
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(220, 44, 85, 0.1);
}

.step-glass-card h4 {
    color: var(--secondary-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-loader {
    width: 0%;
    height: 2px;
    background: var(--primary);
    margin: 15px auto 0;
    transition: 0.5s ease;
}

.workflow-step-modern:hover .step-loader {
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .workflow-grid { grid-template-columns: 1fr; gap: 40px; }
    .workflow-track { display: none; }
    .workflow-step-modern { display: flex; align-items: center; gap: 20px; }
    .step-hex-container { margin: 0; flex-shrink: 0; }
    .step-glass-card { text-align: left; flex-grow: 1; }
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    padding: var(--space-xl) 0;
}

.pricing-switcher {
    max-width: 300px;
    margin: var(--space-lg) auto;
    background: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(var(--light-rgb), 0.5);
}

.switcher-labels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.switcher-label {
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition-base);
}

.switcher-label.active {
    color: var(--primary);
}

.switcher-label .badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-sm);
    margin-left: 0.25rem;
}

.switcher-toggle {
    position: relative;
    width: 60px;
    height: 30px;
}

.switcher-toggle label {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(var(--light-rgb), 0.3);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition-base);
}

.switcher-toggle label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    transition: transform var(--transition-base);
}

#pricing-toggle:checked + label {
    background: rgba(var(--primary-rgb), 0.2);
}

#pricing-toggle:checked + label::after {
    transform: translateX(30px);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.pricing-card {
    /* background: #fff; */
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.card-top {
    padding: 35px;
    position: relative;
    display: grid;
    background: rgba(255, 255, 255, 0.4);
    grid-template-columns: 1fr 100px; 
    border: 1px solid black;
     box-shadow: 0 20px 40px rgba(0,0,0,0.6);
      border-radius: 32px;
}

.theme-pink { background-color: #ffffff; }


.plan-badge {
    background: rgba(255,255,255,0.7);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #444;
}

.plan-title {
    font-size: 26px;
    font-weight: 800;
    margin: 15px 0 5px;
    color: #000;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin: 10px 0;
}

.plan-price .amount {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -2px;
}

.plan-price .currency, .plan-price .period {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

/* Rotating Icons on Hover */
.card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: rgba(0,0,0,0.1);
    transition: 0.6s;
}

.pricing-card:hover .rotating-icon {
    transform: rotate(360deg);
    color: rgba(0,0,0,0.8);
}

/* Progress Bar Logic */
.plan-progress {
    grid-column: span 2;
    margin-top: 25px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #555;
}

.bar { height: 8px; background: rgba(0,0,0,0.05); border-radius: 10px; }
.fill { height: 100%; background: #000; border-radius: 10px; }

/* BOTTOM SECTION: The Feature List */
.card-bottom {
    padding: 35px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.features-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #000;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

.feature-list li i { color: #3b82f6; font-size: 16px; }

/* Action Buttons */
.action-area {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary-blue {
    background: var(--secondary-dark);
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-blue:hover { opacity: 0.9; transform: scale(1.02); }

/* Featured Card Highlight */
.pricing-card.featured {
    border: 2px solid #000000;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
}

.shadow-accent { background: linear-gradient(180deg, #fff 0%, #f0f7ff 100%); }
/* ==================== INQUIRY FORM ==================== */
.inquiry-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(to bottom, 
        rgba(41, 99, 116, 0.05),
        rgba(237, 237, 206, 0.1));
}

.inquiry-form {
    max-width: 800px;
    margin: var(--space-lg) auto 0;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(var(--light-rgb), 0.5);
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.form-header h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid rgba(var(--light-rgb), 0.5);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-control::placeholder {
    color: rgba(var(--gray-rgb), 0.5);
}

.form-helper {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.service-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.service-option {
    position: relative;
}

.service-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.service-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(var(--light-rgb), 0.1);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.service-option input[type="checkbox"]:checked + .service-label {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.service-label i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.service-label span {
    font-size: 0.875rem;
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: normal;
}

.form-actions {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    justify-content: center;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.form-footer {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(var(--light-rgb), 0.3);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
}

.form-note i {
    color: var(--primary);
    width: 16px;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: var(--space-xl) 0;
}

.faq-grid {
    max-width: 800px;
    margin: var(--space-lg) auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(var(--light-rgb), 0.5);
    overflow: hidden;
}

.faq-question {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.faq-question:hover {
    background-color: rgba(var(--light-rgb), 0.1);
}

.faq-question h4 {
    color: var(--secondary);
    margin-right: var(--space-md);
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--gray);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: rgba(var(--light-rgb), 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--light-rgb), 0.3);
}

.faq-cta p {
    color: var(--gray);
}

.faq-cta .link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.faq-cta .link:hover {
    text-decoration: underline;
}

/* ==================== SERVICE CTA ==================== */
.service-cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 44, 85, 0.1) 0%, transparent 50%);
}

.cta-content {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-text {
    animation: fadeIn 0.8s var(--transition-smooth) forwards;
}

.cta-title {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .cta-features .feature {
        justify-content: center;
    }
}

.cta-features .feature i {
    color: var(--success);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .cta-actions {
        align-items: center;
    }
}

/* ==================== NOTIFICATIONS ==================== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(var(--light-rgb), 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    transition: transform 0.3s var(--transition-smooth);
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification i {
    font-size: 1.25rem;
}

.notification-success i {
    color: var(--success);
}

.notification-info i {
    color: var(--primary);
}

.notification span {
    color: var(--secondary);
    font-weight: 500;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .floating-service-badges {
        display: none;
    }
    
    .service-cta {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--transition-smooth);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .hero-section,
    .floating-service-badges,
    .scroll-indicator,
    .btn,
    .hero-social,
    .card-hover-3d,
    .service-3d-card,
    .pricing-switcher,
    .notification {
        display: none !important;
    }
    
    section {
        padding: 1rem 0 !important;
        break-inside: avoid;
    }
    
    .service-card,
    .pricing-card,
    .accordion-item,
    .faq-item {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .service-card.featured,
    .pricing-card.featured {
        border: 2px solid #333 !important;
    }
}
