/* ===========================
   Aurvio - Modern Web Agency CSS
   Version: 1.0
   =========================== */

/* CSS Variables for easy customization */
:root {
    /* Primary Purple Gradient */
    --primary: #7C3AED;
    --primary-dark: #5B21B6;
    --primary-light: #A78BFA;
    --primary-lighter: #C4B5FD;
    --secondary: #F5F3FF;
    --accent: #EC4899;
    --accent-orange: #F59E0B;
    
    /* Text Colors */
    --text-dark: #0F172A;
    --text-body: #334155;
    --text-light: #64748B;
    --text-lighter: #94A3B8;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-section: #F1F5F9;
    --bg-glass: rgba(255, 255, 255, 0.7);
    
    /* Borders & Shadows */
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 50px -12px rgba(124, 58, 237, 0.25);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    --gradient-soft: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.3) 0px, transparent 50%),
                      radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.2) 0px, transparent 50%),
                      radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.2) 0px, transparent 50%);
    
    /* Typography */
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: var(--font-body);
    
    /* Spacing & Sizing */
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Performance optimizations */
.hero-visual,
.animated-shape,
.service-card,
.project-card,
.pricing-card {
    will-change: transform;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

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

.nav-cta {
    margin-left: 24px;
    display: flex;
    align-items: center;
}

.nav-cta .btn-primary {
    background: var(--primary);
    color: white;
    padding: 10px 32px;
    border: 2px solid var(--primary);
}

.nav-cta .btn-primary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(0);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--secondary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

/* Header Bar */
.header-bar {
    background: var(--gradient-soft);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.header-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 24px;
    color: var(--text-body);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px) scale(1.1);
}

.social-links a:hover img {
    filter: brightness(0) invert(1);
}

/* Main Header */
.main-header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    max-height: 55px;
    transition: var(--transition);
}

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: white;
    min-width: 280px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 12px;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: var(--text-body);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--gradient-soft);
    color: var(--primary);
    transform: translateX(4px);
}

.dropdown-menu img {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.dropdown-menu a:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F3FF 50%, #FDF4FF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 1;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    margin-bottom: 24px;
    color: var(--primary);
    animation: fadeInUp 0.8s ease;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 36px;
    animation: fadeInUp 1s ease;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    animation: fadeInUp 1.2s ease;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-shape {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 25px 50px rgba(124, 58, 237, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-30px) scale(1.05); 
    }
}

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

/* About Section */
.about {
    background: white;
}

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

.about-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-description, .about-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.about-stat {
    text-align: center;
    padding: 24px;
    background: var(--gradient-soft);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.1;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.about-visual:hover::before {
    opacity: 0;
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-visual:hover img {
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: var(--bg-section);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle, .services-overview p, .projects p, .benefits-section p, .features-showcase p, .faq p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-title-small {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(124, 58, 237, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3));
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.35rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 68px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 48px 28px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -55px;
    top: 50%;
    transform: translateY(-30%);
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.4;
    font-weight: bold;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.process-step:hover {
    border-color: var(--primary-lighter);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-glow);
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: var(--shadow-hover);
}

.process-step h3 {
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Projects Section */
.projects-carousel {
    position: relative;
    margin-top: 60px;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding-bottom: 64px;
    padding-left: 24px;
    padding-right: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    position: relative;
    flex-shrink: 0;
    width: calc(50% - 22.5px);
    min-width: 300px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-lighter);
}

.project-card:hover::before {
    opacity: 0.02;
}

.project-image {
    position: relative;
    height: auto;
    overflow: hidden;
    background: var(--bg-section);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.15) rotate(2deg);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: badge-pulse 2s ease infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.badge-performance {
    background: var(--gradient-primary);
}

.project-content {
    padding: 36px;
    position: relative;
    z-index: 1;
}

.project-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.project-content p, .project-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
text-align: left;
font-size: 16px;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
margin-top: 24px;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-soft);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--primary-lighter);
    transition: var(--transition);
}

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

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
}

.project-link:hover {
    gap: 14px;
    color: var(--primary-dark);
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-50%) scale(1);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
    margin-top: 60px;
}

.maitenance-section {
padding: 80px 0; 
background: var(--bg-white);
}

.maintenance-section .pricing-notice {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--secondary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-lighter);
}

.maintenance-section .pricing-notice p {
    color: var(--text-body);
    font-size: 1.05rem;
    margin: 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: var(--primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: white;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 1;
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card:not(.featured):hover {
    transform: translateY(-8px);
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 28px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    text-align: left;
}

.pricing-features li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-soft);
    color: var(--primary);
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 36px;
    font-size: 0.95rem;
}

/* Aurvio CMS Section */
.aurvio-cms {
    background: var(--bg-section);
    overflow: hidden;
}

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

.cms-label,
.booking-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cms-content h2,
.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cms-description,
.booking-description,
.aurvio-cms p,
.hotel-booking p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cms-features,
.booking-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.cms-feature,
.booking-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.cms-feature:hover,
.booking-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}

.cms-feature-icon,
.booking-feature-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.cms-feature-icon img, .booking-feature-icon img {
    max-width: 60%;
}

.cms-feature h3,
.booking-feature h4 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.cms-feature p,
.booking-feature p {
    color: var(--text-light);
    line-height: 1.6;
margin-bottom: 0;
font-size: 1rem;
}

.cms-visual,
.booking-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-slow);
}

.cms-visual:hover,
.booking-visual:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.cms-visual img,
.booking-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hotel Booking Section */
.hotel-booking {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F3FF 100%);
}

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

.booking-visual {
    transform: perspective(1000px) rotateY(5deg);
}

.booking-visual:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.booking-feature {
    padding: 20px;
}

/* Stats Section */
section.stats {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.stats .cta-content {
text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.stats .cta-content h2 {
color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.stats .cta-content p {
color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.stats .cta-content div {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.stats .cta-content div a.btn-primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

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

.stat-item h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Blog & FAQ Grid */
.blog-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Blog Posts */
.blog-post {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post h3 {
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.blog-post h3 a {
    color: var(--text-dark);
}

.blog-post h3 a:hover {
    color: var(--primary);
}

.blog-post p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-post time {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ */
.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gradient-soft);
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    font-weight: 300;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 50%;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    background: var(--gradient-primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
    padding: 24px;
    background: var(--bg-light);
    color: var(--text-body);
    line-height: 1.8;
    border-top: 1px solid var(--border-light);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F3FF 50%, #FDF4FF 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form-wrapper h2 {
margin-bottom: 10px;
}

.contact-form-wrapper p {
color: var(--text-light); 
margin-bottom: 30px;
}

#subject {
width: 100%; padding: 16px 20px; border: 2px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 1rem; background: white;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    background: white;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--accent);
}

.error-message {
    display: none;
    color: var(--accent);
    font-size: 0.875rem;
    margin-top: 8px;
    font-weight: 600;
}

.form-group.error .error-message {
    display: block;
}

.form-status {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: var(--radius);
    display: none;
    font-weight: 600;
}

.form-status.success {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    display: block;
    border: 2px solid #10B981;
}

.form-status.error {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    display: block;
    border: 2px solid #EF4444;
}

/* Loading state for button */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

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

/* Contact Info */
.contact-info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    margin-bottom: 32px;
    font-size: 1.5rem;
}

.contact-info-card div {
display: flex; flex-direction: column; gap: 12px; margin-top: 20px;
}

.contact-info-card div.contact-item {
gap: 0;
}

.contact-info-card div a {
display: flex; align-items: center; gap: 10px; color: var(--text-body); padding: 10px; background: var(--bg-light); border-radius: var(--radius); transition: var(--transition);
}

.contact-info-card div a:hover {
background: var(--secondary);
}

.contact-info-card div.contact-item a {
padding: 0;
background: transparent;
color: var(--primary);
font-weight: 700;
}

.contact-item {
    margin-bottom: 28px;
    padding-left: 40px;
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-body);
    line-height: 1.6;
}

.map-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
height: auto;
    max-height: 280px;
    box-shadow: var(--shadow-md);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 24px;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-logo {
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    border-color: transparent;
}

.footer-social img {
    filter: brightness(0) invert(1);
    width: 22px;
    height: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .blog-faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cms-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .cms-visual,
    .booking-visual {
        transform: none;
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-card {
        width: calc(50% - 15px);
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
display: none;
        position: fixed;
        top: 85px;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 30px 150px;
        box-shadow: -5px 0 20px var(--shadow);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: scroll;
    }
    
    .nav-menu.active {
        right: 0;
display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 12px;
        border: 1px solid var(--border);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-left: 20px;
        margin-top: 10px;
    }
    
    .nav-menu li.has-dropdown a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-menu .dropdown-menu a {
        display: flex;
    }

    .nav-menu li.has-dropdown .dropdown-menu a {
        justify-content: flex-start;
    }

    .nav-cta {
        margin: 12px 0;
    }

    .nav-menu .dropdown-menu li {
        margin-bottom: 6px;
    }
    
    /* On mobile, dropdowns are hidden by default and toggled via JavaScript */
    .dropdown-menu {
        display: none;
    }
    
    .has-dropdown > a {
        position: relative;
    }
    
    
    .has-dropdown > a[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .footer-column ul li a {
        padding: 0;
    }
    
    /* Other mobile adjustments */
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid,
    .process-steps,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-carousel {
        padding: 0 50px;
    }
    
    .project-card {
        width: 100%;
        min-width: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .booking-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .cms-feature,
    .booking-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step::after {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .header-bar-content {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .contact-form,
    .contact-info-card {
        padding: 24px;
    }
    
    .cms-content,
    .booking-content {
        padding: 0;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .stat-badge {
        font-size: 3rem;
    }
}

/* Service Pages Styles */
.service-hero {
    padding: 120px 0 80px;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
    pointer-events: none;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.service-hero-description, .service-hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.hero-feature svg {
    flex-shrink: 0;
}

.service-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-hero-visual {
    position: relative;
}

.service-hero-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: var(--bg-section);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    padding: 40px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
font-size: 1rem;
text-align: left;
margin: 0;
}

/* Features Showcase */
.features-showcase {
    padding: 80px 0;
    background: var(--bg-white);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
}

.feature-row:first-of-type {
    margin-top: 60px;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--secondary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
}

.feature-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: left;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-body);
}

.feature-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.feature-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.use-case-card {
    padding: 35px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.use-case-icon {
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.use-case-card > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.use-case-features {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.use-case-features li {
    padding: 8px 0;
    color: var(--text-body);
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.use-case-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 80px 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.tech-category h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
}

.tech-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tech-icon {
    font-size: 2rem;
}

.tech-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 0.875rem;
}

.contact-item p {
    color: var(--text-body);
    margin: 0;
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Values Section */
.mission-values {
    padding: 80px 0;
    background: var(--bg-section);
}

/* Projects Showcase on Service Pages */
.projects-showcase {
    padding: 80px 0;
}

/* Responsive for Service Pages */
@media (max-width: 1024px) {
    .service-hero-content,
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-row-reverse {
        direction: ltr;
    }
    
    .benefits-grid,
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .service-hero h1,
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .service-hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero-description,
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .service-hero-features {
        grid-template-columns: 1fr;
    }
    
    .service-hero-cta {
        flex-direction: column;
    }
    
    .service-hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .benefits-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-row {
        margin-top: 50px;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   Projects Pages
   ======================================== */

.projects-section {
    padding: 60px 0;
}

.projects-filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--secondary);
    border: 2px solid transparent;
    border-radius: var(--radius);
    color: var(--text-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 357/190;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 25px;
}

.project-category {
    display: inline-block;
    padding: 6px 12px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.project-info h3 {
    margin: 0 0 12px 0;
    font-size: 1.5rem;
}

.project-info h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-info h3 a:hover {
    color: var(--primary);
}

.project-info p {
    color: var(--text-body);
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 5px 12px;
    background: var(--secondary);
    color: var(--text-body);
    font-size: 0.8rem;
    border-radius: 15px;
}

/* Project Detail Page */

.project-detail-hero {
    padding: 60px 0 40px;
    background: var(--secondary);
}

.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.project-detail-header {
    max-width: 900px;
}

.project-detail-info .project-category {
    margin-bottom: 15px;
}

.project-detail-info h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.project-subtitle {
    font-size: 1.3rem;
    color: var(--text-body);
    margin-bottom: 30px;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--radius);
}

.meta-item {
    font-size: 0.95rem;
}

.meta-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.project-detail-content {
    padding: 60px 0;
}

.project-detail-content .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.project-detail-main {
    max-width: 100%;
}

.project-image-showcase {
    margin-bottom: 40px;
    border-radius: var(--radius);
    overflow: hidden;
}

.project-image-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

.project-section {
    margin-bottom: 50px;
}

.project-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.project-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.project-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.project-gallery {
    margin: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.result-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--secondary);
    border-radius: var(--radius);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.result-label {
    color: var(--text-body);
    font-size: 0.95rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 500;
}

.project-testimonial {
    margin-top: 50px;
    padding: 40px;
    background: var(--secondary);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
}

.project-testimonial blockquote {
    margin: 0;
}

.project-testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.project-testimonial footer {
    font-style: normal;
    color: var(--text-body);
}

/* Sidebar */

.project-detail-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--secondary);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--secondary);
}

.detail-row:last-child {
    border-bottom: none;
}

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

.detail-value {
    color: var(--text-body);
}

.detail-value a {
    color: var(--primary);
    text-decoration: none;
}

.detail-value a:hover {
    text-decoration: underline;
}

.sidebar-cta {
    background: var(--gradient);
    color: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.sidebar-cta h3 {
    color: white;
    margin-bottom: 15px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
}

.related-projects {
    padding: 80px 0;
    background: var(--secondary);
}

/* Responsive - Projects */

@media (max-width: 1024px) {
    .project-detail-content .container {
        grid-template-columns: 1fr;
    }
    
    .project-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-detail-info h1 {
        font-size: 2rem;
    }
    
    .project-meta {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Pricing Page (Cjenik)
   ======================================== */

.pricing-overview {
    padding: 60px 0;
}

.pricing-category {
    margin-bottom: 60px;
}

.pricing-category-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-category-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pricing-category-header p {
    color: var(--text-body);
    font-size: 1.1rem;
}

.pricing-table {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 30px;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-service h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
}

.pricing-service p {
    margin: 0;
    color: var(--text-body);
    font-size: 0.95rem;
}

.pricing-details {
    text-align: right;
    min-width: 150px;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.included-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
}

.pricing-notes {
    padding: 60px 0;
    background: var(--secondary);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.note-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.note-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.note-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.note-card p {
    color: var(--text-body);
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   Blog Pages
   ======================================== */

.blog-section {
    padding: 60px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-content h2 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

.blog-content h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.blog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.pagination-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Blog Sidebar */

.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.search-box button {
    padding: 12px 20px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: var(--primary-dark);
}

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

.category-list li {
    border-bottom: 1px solid var(--border-light);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary);
}

.category-list span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.popular-post:hover {
    opacity: 0.7;
}

.popular-post-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.popular-post-content h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.popular-post-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Blog Post Page */

.blog-post {
    padding: 60px 0;
}

.blog-post .container {
    max-width: 1200px;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.author-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

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

.post-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-share .share-btn {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.post-share .share-btn:hover {
    background: var(--primary);
    color: white;
}

.post-featured-image {
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.post-body .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.post-body h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-body blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: var(--secondary);
    border-left: 4px solid var(--primary);
    font-size: 1.2rem;
    font-style: italic;
}

.post-body blockquote p {
    margin: 0;
}

.post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
}

.post-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 5px;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background: var(--primary);
    color: white;
}

.post-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.table-of-contents {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.table-of-contents a {
    padding: 10px;
    color: var(--text-body);
    text-decoration: none;
    border-left: 3px solid var(--border);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.table-of-contents a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    background: var(--secondary);
}

.post-author-box {
    display: flex;
    gap: 25px;
    margin: 60px 0;
    padding: 40px;
    background: var(--secondary);
    border-radius: var(--radius);
}

.author-box-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
}

.author-title {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.author-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.author-social a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.related-posts-section {
    margin-top: 80px;
}

.related-posts-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-post-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.related-post-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-post-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.related-post-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.related-post-content h3 a:hover {
    color: var(--primary);
}

.related-post-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ========================================
   FAQ Page
   ======================================== */

.faq-section {
    padding: 60px 0;
}

.faq-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.faq-category-btn {
    padding: 12px 24px;
    background: var(--secondary);
    border: 2px solid transparent;
    border-radius: var(--radius);
    color: var(--text-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
}

.faq-category-btn.active {
    background: var(--primary);
    color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.faq-group {
    margin-bottom: 40px;
}

.faq-group h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
}

.faq-item {
    margin-bottom: 15px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.faq .faq-answer p {
    margin: 0 0 15px 0;
    line-height: 1.7;
    color: var(--text-body);
padding: 0;
background: transparent;
border-top: none;
text-align: left;
font-size: 1rem;
padding-left: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 10px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--secondary);
    border-radius: var(--radius);
}

.faq-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 30px;
}

/* Responsive - Blog & FAQ */

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .post-content {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-details {
        text-align: left;
    }
    
    .pricing-action {
        text-align: left;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-box-avatar {
        margin: 0 auto;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header-bar,
    .main-header,
    .hero-visual,
    .carousel-controls,
    .mobile-toggle,
    .footer-social,
    .contact-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* ===========================
   Cookie Consent Banner
   =========================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-consent-text h3 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.25rem;
}

.cookie-consent-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    background: var(--bg-section);
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 30px;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cookie-category h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cookie-category p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Cookie Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--primary);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--border-light);
    text-align: right;
}

#cookie-settings {
    color: #FFF;
}

#cookie-settings:hover {
    color: var(--primary);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-consent-actions .btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 20px;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 20px;
    }
}