/*
Theme Name: Staciwa
Description: A modern WordPress theme with Bootstrap integration and dark design
Version: 1.0
Author: Your Name
Text Domain: staciwa
*/

/* CSS Custom Properties for Dark Theme */
:root {
    --primary-pink: #e91e63;
    --secondary-pink: #ff6b9d;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --dark-header: #1e1e1e;
    --dark-card: #2a2a2a;
    --text-light: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --accent-blue: #4a90e2;
    --accent-purple: #9c27b0;
    --accent-green: #4caf50;
    --gradient-pink: linear-gradient(135deg, #ff6b9d 0%, #e91e63 100%);
    --gradient-blue: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    --gradient-purple: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    --shadow-dark: 0 4px 20px rgba(233, 30, 99, 0.15);
    --shadow-light: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* Basic Reset and Typography */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* Dark Theme Backgrounds */
.bg-dark-header {
    background-color: var(--dark-header) !important;
}

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

.bg-dark-card {
    background-color: var(--dark-card);
}

/* Pink Theme Colors */
.text-pink {
    color: var(--primary-pink) !important;
}

.text-pink-light {
    color: var(--secondary-pink) !important;
}

.bg-pink {
    background-color: var(--primary-pink) !important;
}

.bg-gradient-pink {
    background: var(--gradient-pink) !important;
}

.border-pink {
    border-color: var(--primary-pink) !important;
}

/* Button Styles */
.btn-pink {
    background: var(--gradient-pink);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
    color: white;
}

.btn-outline-pink {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.wp-caption {
    max-width: 100%;
    background: var(--dark-card);
    padding: 1rem;
    border-radius: 8px;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.5rem;
}

/* Custom Theme Styles */
.site-header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

/* Modern Header Navigation */
.site-header .navbar {
    background: rgba(13, 13, 13, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative !important;
}

/* Override bg-dark-header for transparency */
.site-header .navbar.bg-dark-header {
    background: rgba(13, 13, 13, 0.7) !important;
}

/* Prevent layout shift on mobile menu toggle */
.site-header .navbar.sticky-top {
    position: relative !important;
    top: auto !important;
}

/* Add body padding to compensate for fixed header */
body {
    padding-top: 100px;
}

/* Adjust for mobile */
@media (max-width: 991.98px) {
    body {
        padding-top: 80px;
    }
    
    .site-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: rgba(13, 13, 13, 0.95);
        border-radius: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
        z-index: 1000;
        margin-top: 10px;
        padding: 1.5rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .site-header .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .site-header .navbar-collapse.collapsing {
        transform: translateY(-5px);
        opacity: 0.5;
        visibility: visible;
    }
    
    .site-header .navbar-nav {
        gap: 0.5rem;
    }
    
    .site-header .navbar-nav .nav-item {
        margin: 0;
    }
    
    .site-header .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        margin: 0.25rem 0;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .site-header .navbar-nav .nav-link:hover {
        background: rgba(233, 30, 99, 0.15);
        border-color: rgba(233, 30, 99, 0.3);
        transform: translateX(5px);
    }
    
    .site-header .navbar-collapse .btn-pink {
        margin-top: 1rem;
        padding: 0.75rem 1.5rem;
        border-radius: 0.75rem;
        background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
        border: none;
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
        transition: all 0.3s ease;
    }
    
    .site-header .navbar-collapse .btn-pink:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    }
    
    /* Enhanced mobile menu toggle button */
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
        border-color: rgba(233, 30, 99, 0.5);
    }
    
    .navbar-toggler[aria-expanded="true"] {
        background: rgba(233, 30, 99, 0.2);
        border-color: rgba(233, 30, 99, 0.4);
        transform: rotate(90deg);
    }
}

.site-header .navbar:hover,
.site-header .navbar.bg-dark-header:hover {
    background: rgba(13, 13, 13, 0.5) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Navigation Link Hover Effects */
.nav-link-hover {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-hover:hover {
    background: rgba(233, 30, 99, 0.1) !important;
    color: var(--secondary-pink) !important;
    transform: translateY(-2px);
}

.nav-link-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-hover:hover::after {
    width: 80%;
}

/* Navbar Brand Animation */
.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Mobile Menu Improvements */
.navbar-toggler {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(233, 30, 99, 0.1);
    transform: scale(1.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.site-footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.entry-content {
    margin: 2rem 0;
    color: var(--text-light);
}

.entry-meta {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 1rem 0;
}

.entry-meta a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: var(--secondary-pink);
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    margin-top: -100px;
    padding-top: 90px;
}

/* Hero Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 70%),
                radial-gradient(circle at 70% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, rgba(255, 20, 147, 0.05) 0%, transparent 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(138, 43, 226, 0.1));
    animation: float 6s ease-in-out infinite;
}

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

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 25%;
    animation-delay: 1s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 5%;
    animation-delay: 3s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 70%;
    right: 5%;
    animation-delay: 5s;
}

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

/* Hero Content */
.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.typing-animation {
    position: relative;
    overflow: hidden;
}

.typing-animation::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--pink);
}

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

/* Hero Buttons */
.hero-buttons .btn {
    transition: all 0.4s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(45deg, var(--pink), #ff1493);
    border: none;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.4);
    background: linear-gradient(45deg, #ff1493, var(--pink));
}

.hero-btn-secondary {
    border: 2px solid var(--pink);
    color: var(--pink);
    background: rgba(255, 20, 147, 0.1);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--pink);
    color: white;
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.3);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-main-image {
    animation: float-image 6s ease-in-out infinite;
    filter: drop-shadow(0 25px 50px rgba(255, 20, 147, 0.3));
}

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

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float-element 4s ease-in-out infinite;
}

.floating-element-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.floating-element-2 {
    bottom: 25%;
    right: 10%;
    animation-delay: 1.5s;
}

.floating-element-3 {
    top: 50%;
    right: 35%;
    animation-delay: 3s;
}

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

/* Hero Social Proof */
.hero-social-proof {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.counter {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Gradient Classes */
.bg-gradient-pink {
    background: var(--gradient-pink) !important;
}

.bg-gradient-blue {
    background: linear-gradient(45deg, #007bff, #0056b3) !important;
}

.bg-gradient-purple {
    background: linear-gradient(45deg, #6f42c1, #5a2d91) !important;
}

/* About Section */
.about-section {
    position: relative;
}

.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    animation: float-circle 8s ease-in-out infinite;
}

.floating-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.floating-circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

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

.about-image-container {
    position: relative;
}

.about-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.2) 0%, transparent 70%);
    border-radius: 1rem;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 1;
}

.about-image-card {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
    border-color: var(--primary-pink);
}

.about-main-image {
    transition: all 0.4s ease;
}

.about-image-card:hover .about-main-image {
    transform: scale(1.05);
}

.feature-highlight {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.2);
}

.feature-highlight .icon-bg {
    transition: all 0.3s ease;
}

.feature-highlight:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.btn-outline-pink {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: var(--gradient-pink);
    color: white;
    border-color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

/* Social Proof Widget */
.social-proof-section {
    background: var(--darker-bg);
}

.social-proof-widget {
    background: var(--dark-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-proof-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-proof-widget:hover::before {
    left: 100%;
}

.social-proof-badge {
    position: relative;
    z-index: 2;
}

.testimonial-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-item blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.social-proof-stats {
    position: relative;
    z-index: 2;
}

.social-proof-badges .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Client Logos */
.client-logos {
    position: relative;
    z-index: 2;
}

.client-logo {
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    opacity: 1 !important;
    transform: translateY(-5px);
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        min-height: 90vh;
        margin-top: -100px;
        padding-top: 80px;
    }
    
    .hero-social-proof .row {
        text-align: center;
    }
    
    .floating-element {
        display: none;
    }
    
    .shape {
        width: 50px !important;
        height: 50px !important;
    }
    
    .social-proof-widget {
        margin: 0 1rem;
    }
    
    .social-proof-widget .row > div {
        margin-bottom: 2rem;
    }
    
    .social-proof-widget .row > div:last-child {
        margin-bottom: 0;
    }
}

/* Section Styles */
.section-dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.section-darker {
    background: var(--darker-bg);
    color: var(--text-light);
}

/* Card Styles */
.card-dark {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.card-dark:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-pink);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    position: absolute;
    left: 6px;
    top: 7px;
    z-index: 999999;
    padding: 8px 16px;
    background: var(--primary-pink);
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-pink);
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-pink);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-dark);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.3);
}

/* Call to Action Section */
.cta-section {
    background: var(--gradient-pink);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

/* Feature Cards */
.feature-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-pink);
    box-shadow: 0 25px 50px rgba(255, 20, 147, 0.3), 0 0 0 1px rgba(255, 20, 147, 0.1);
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-card:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.feature-card:hover .icon-pulse {
    animation: pulse-glow 2s infinite;
}

/* Feature Card Glow Effect */
.feature-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

/* Feature Icon Styles */
.feature-icon .icon-bg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Feature Stats */
.feature-stats .stat-item {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-stats .stat-item {
    transform: translateY(-2px);
}

.feature-stats .h6 {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Section Badge */
.section-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: float 3s ease-in-out infinite;
}

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

/* Feature Card Content Positioning */
.feature-card .position-relative {
    z-index: 2;
}

/* Responsive Feature Cards */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .feature-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
    
    .feature-icon .icon-bg {
        width: 70px !important;
        height: 70px !important;
    }
    
    .icon-pulse {
        width: 70px;
        height: 70px;
    }
    
    /* About Section Mobile */
    .floating-circle-1 {
        width: 120px;
        height: 120px;
        top: 5%;
        right: 5%;
    }
    
    .floating-circle-2 {
        width: 100px;
        height: 100px;
        bottom: 10%;
        left: 5%;
    }
    
    .floating-circle-3 {
        width: 80px;
        height: 80px;
        top: 50%;
        right: 20%;
    }
    
    .about-image-card {
        margin-bottom: 2rem;
    }
    
    .feature-highlight {
        margin-bottom: 1rem;
    }
    
    .about-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .about-cta .btn:last-child {
        margin-bottom: 0;
    }
}

/* Stats Section Styles */
.stats-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(139, 69, 19, 0.1) 100%);
}

.stats-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stats-bg-elements .floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-pink) 0%, var(--accent-purple) 100%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.stats-circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.stats-circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.stats-circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.stat-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
}

.stat-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-pink), var(--accent-purple));
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-card:hover .stat-card-glow {
    opacity: 0.1;
}

.stat-icon .icon-bg {
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon .icon-bg {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
}

.counter {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services Section Styles */
.services-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.services-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.service-card-modern {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--pink);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 20, 147, 0.2);
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.service-card-modern:hover .service-card-glow {
    opacity: 1;
}

.service-icon-container {
    position: relative;
}

.service-icon-bg {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card-modern:hover .service-icon-bg {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-features {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.feature-item {
    transition: all 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.service-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

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

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

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline-pink {
    color: var(--pink);
    border-color: var(--pink);
    background: rgba(255, 20, 147, 0.1);
}

.btn-outline-pink:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), #ff6b9d);
    border-color: var(--pink);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}

.btn-outline-purple {
    color: var(--purple);
    border-color: var(--purple);
    background: rgba(138, 43, 226, 0.1);
}

.btn-outline-purple:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), #9d4edd);
    border-color: var(--purple);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

.btn-outline-blue {
    color: var(--blue);
    border-color: var(--blue);
    background: rgba(0, 123, 255, 0.1);
}

.btn-outline-blue:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #4dabf7);
    border-color: var(--blue);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.text-purple {
    color: var(--purple) !important;
}

.text-blue {
    color: var(--blue) !important;
}

/* Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.testimonials-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.testimonial-circle-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.testimonial-circle-2 {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.testimonial-circle-3 {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.1), rgba(255, 69, 0, 0.1));
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

/* Carousel Navigation */
.carousel-nav {
    gap: 1rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.carousel-indicators {
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Carousel Container */
.testimonial-carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.testimonial-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 500%; /* 5 slides */
}

.testimonial-slide {
    width: 20%; /* 100% / 5 slides */
    flex-shrink: 0;
    padding: 0 15px;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Modern Testimonial Card */
.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial-card-modern:hover::before {
    left: 100%;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 20, 147, 0.3);
}

/* Quote Icon */
.testimonial-quote-icon {
    font-size: 3rem;
    color: #ff1493;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.8s; }

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    position: relative;
}

.avatar-gradient {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.avatar-gradient:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.bg-gradient-pink {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
}

.bg-gradient-purple {
    background: linear-gradient(45deg, #8a2be2, #9370db);
}

.bg-gradient-blue {
    background: linear-gradient(45deg, #00bfff, #1e90ff);
}

.bg-gradient-green {
    background: linear-gradient(45deg, #32cd32, #00ff7f);
}

.bg-gradient-orange {
    background: linear-gradient(45deg, #ffa500, #ff4500);
}

.bg-gradient-yellow {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.bg-pink-blur {
    background: rgba(255, 107, 157, 0.35) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 157, 0.4);
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: white;
    overflow: hidden;
    margin-top: 0 !important;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 2rem;
}

.footer-brand .brand-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.brand-gradient {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info .contact-item i {
    color: #e91e63;
    width: 20px;
    font-size: 1.1rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links .links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links .links-list li {
    margin-bottom: 0.75rem;
}

.footer-links .links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;

}



.footer-links .links-list a:hover {
    color: #e91e63;
    padding-left: 1.25rem;
}

.footer-links .links-list a:hover:before {
    transform: translateX(0.25rem);
}

.footer-contact .contact-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .input-wrapper {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form .input-wrapper:focus-within {
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.contact-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    flex: 1;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .submit-btn {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.contact-form .submit-btn:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: scale(1.05);
}

.contact-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message .success-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(233, 30, 99, 0.1);
    border-color: #e91e63;
    color: #e91e63;
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.copyright .made-with {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.copyright .made-with i {
    color: #e91e63;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #e91e63;
}

.rzetelna-firma img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.rzetelna-firma:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.4);
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Remove gap above footer */
main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.site-footer {
    margin-top: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .legal-links {
        order: 2;
    }
    
    .rzetelna-firma {
        order: 1;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

.avatar-initials {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.author-info {
    text-align: left;
}

.author-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.author-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.author-company {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.author-company i {
    color: #ff1493;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.cta-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.cta-feature {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-feature:hover {
    transform: translateY(-5px);
}

.cta-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.cta-feature:nth-child(2) .cta-feature-icon {
    background: linear-gradient(45deg, #4834d4, #686de0);
}

.cta-feature:nth-child(3) .cta-feature-icon {
    background: linear-gradient(45deg, #00d2d3, #54a0ff);
}

.cta-feature:hover .cta-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.cta-btn-primary {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
    color: white;
}

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

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
    color: white;
}

.trust-item {
    padding: 0 1rem;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.text-gradient-pink {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 1rem 0;
    }
    
    /* Stats responsive */
    .stats-bg-elements .floating-circle,
    .services-bg-elements .floating-circle {
        display: none;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .stat-icon .icon-bg {
        width: 50px !important;
        height: 50px !important;
    }
    
    .counter {
        font-size: 2rem !important;
    }
    
    .service-card-modern {
        padding: 2rem !important;
        margin-bottom: 1.5rem;
    }
    
    .service-icon-bg {
        width: 60px !important;
        height: 60px !important;
    }
    
    .service-icon-bg i {
        font-size: 1.5rem !important;
    }
    
    .testimonial-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
        margin-top: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-quote-icon {
        font-size: 2rem;
    }
    
    .cta-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .cta-card-modern {
        padding: 2rem 1rem;
        margin: 0.5rem;
        border-radius: 16px;
    }
    
    .cta-feature {
        margin-bottom: 1rem;
        padding: 1rem 0.5rem;
    }
    
    .cta-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-feature h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-feature p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .row.g-4.mb-5 {
        margin-bottom: 2rem !important;
        gap: 0.5rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.75rem;
    }
    
    .cta-trust-indicators {
        margin-top: 2rem;
    }
    
    .trust-item {
        margin-bottom: 0.75rem;
        padding: 0;
    }
    
    .trust-item .h4 {
        font-size: 1.25rem;
    }
    
    .trust-item small {
        font-size: 0.75rem;
    }
    
    .trust-divider {
        display: none;
    }
    
    .display-3 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .lead {
        font-size: 1rem;
        margin-bottom: 2rem !important;
    }
}

/* ===== PORTFOLIO SINGLE STYLES ===== */

/* Portfolio Single Page */
.portfolio-single .page-hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-bottom: 3px solid var(--primary-pink);
}

/* Portfolio Meta Badges */
.portfolio-single .project-meta .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.portfolio-single .project-thumbnail img {
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-single .project-thumbnail:hover img {
    transform: scale(1.05);
}

/* Technology Stack Section */
.portfolio-single .tech-stack {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.portfolio-single .tech-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.portfolio-single .tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.15) !important;
    border-color: var(--primary-pink);
}

/* Project Details Section */
.project-details-tech {
    background: var(--dark-bg);
}

.project-overview-card, .project-screenshot-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-content-tech {
    color: var(--text-secondary);
    line-height: 1.8;
}

.project-content-tech h1, .project-content-tech h2, .project-content-tech h3 {
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.project-content-tech p {
    margin-bottom: 1.5rem;
}

.screenshot-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.screenshot-container img {
    transition: transform 0.3s ease;
}

.screenshot-container:hover img {
    transform: scale(1.05);
}

/* Sidebar Styles */
.project-specs-card, .dev-metrics-card, .quick-actions-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.specs-list {
    space-y: 1rem;
}

.spec-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.spec-label i {
    margin-right: 0.5rem;
    color: var(--primary-pink);
}

.spec-value {
    font-weight: 600;
    color: var(--text-light);
}

/* Development Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.metric-item:hover {
    background: rgba(233, 30, 99, 0.1);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-pink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1.125rem;
    color: white;
}

.metric-info {
    flex: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Quick Actions */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-btn.primary {
    background: var(--gradient-pink);
    color: white;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
    color: white;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-pink);
    color: var(--text-light);
}

.action-btn i {
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .tech-item-card {
        padding: 1.5rem 1rem;
    }
    
    .project-title-tech {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .project-header .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .project-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* ===== SIMPLIFIED PORTFOLIO STYLES ===== */

/* Portfolio Information Sidebar */
.portfolio-single .project-info {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-single .info-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-single .info-item:last-child {
    border-bottom: none;
}

.portfolio-single .info-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.portfolio-single .info-value {
    color: var(--text-primary);
    font-weight: 600;
}

/* Share Project Section */
.portfolio-single .share-project .btn {
    transition: all 0.3s ease;
}

.portfolio-single .share-project .btn:hover {
    transform: translateY(-2px);
}

/* Portfolio Navigation */
.portfolio-single .portfolio-navigation .btn {
    transition: all 0.3s ease;
}

.portfolio-single .portfolio-navigation .btn:hover {
    transform: translateX(5px);
}

.blue-icon::before{
    color: #00bfff;
}
.purple-icon::before{
    color: #8a2be2;
}