/* ========================================
   Akademiktez.com - Main Stylesheet
   ======================================== */

/* CSS Variables - Vibrant & Eye-Catching Colors */
:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --accent-glow: #fbbf24;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.4);
    --shadow-glow-accent: 0 0 40px rgba(245, 158, 11, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.rainbow-gradient {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 300% 300%;
    animation: rainbow-shift 5s ease infinite;
}

@keyframes rainbow-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    animation: bg-shift 15s ease infinite;
}

@keyframes bg-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header:hover {
    box-shadow: 0 8px 40px rgba(79, 70, 229, 0.2);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 99999 !important;
    transition: var(--transition);
    animation: bounce 2s infinite, glow-pulse 2s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none !important;
}

.floating-whatsapp:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

/* Floating Mail Button */
.floating-mail {
    position: fixed;
    bottom: 30px;
    right: 110px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    z-index: 99999 !important;
    transition: var(--transition);
    animation: bounce 2s infinite, glow-pulse 2s ease-in-out infinite;
    animation-delay: 0.3s;
    cursor: pointer;
    text-decoration: none !important;
}

.floating-mail:hover {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.7);
}

/* Floating Phone Button */
.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 190px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    z-index: 99999 !important;
    transition: var(--transition);
    animation: bounce 2s infinite, glow-pulse-phone 2s ease-in-out infinite;
    animation-delay: 0.6s;
    cursor: pointer;
    text-decoration: none !important;
}

.floating-phone:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.7);
}

@keyframes glow-pulse-phone {
    0%, 100% { box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 8px 45px rgba(16, 185, 129, 0.8); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 45px rgba(37, 211, 102, 0.8); }
}

/* Floating Search Button */
.floating-search {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    z-index: 9999;
    transition: var(--transition);
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

.floating-search:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-search-panel {
    position: fixed;
    bottom: 110px;
    right: 95px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    display: none;
    min-width: 320px;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-search-panel::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 45px;
    bottom: -15px;
    background: white;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-search-panel.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-search-panel input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--primary-light);
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
}

.floating-search-panel input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.floating-search-panel button {
    margin-top: 15px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.floating-search-panel button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logo-shine 3s ease-in-out infinite;
}

@keyframes logo-shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.admin-link {
    color: var(--text-light) !important;
    font-size: 14px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transition: var(--transition);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.btn-large {
    padding: 20px 45px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: bg-wave 20s linear infinite;
}

@keyframes bg-wave {
    0% { background-position: 0 0; }
    100% { background-position: 100px 0; }
}

.page-header.simple {
    padding: 80px 0;
}

.page-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-description {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    opacity: 0.9;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 25%, #ec4899 50%, #f43f5e 75%, #f97316 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    color: white;
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: hero-glow 10s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.08)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: wave-move 20s linear infinite;
}

@keyframes wave-move {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    animation: particles-float 25s linear infinite;
}

@keyframes particles-float {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 200px 200px, 225px 225px; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 12px 25px;
    border-radius: 40px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-badge i {
    color: var(--accent-glow);
    font-size: 20px;
    animation: star-spin 3s linear infinite;
}

@keyframes star-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 4px 50px rgba(255, 255, 255, 0.3), 0 0 80px rgba(255, 255, 255, 0.2); }
}

.hero-title .highlight {
    color: var(--accent-glow);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, #fbbf24, #f472b6, #a78bfa, #34d399);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 4s ease infinite;
}

@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: 22px;
    opacity: 0.98;
    margin-bottom: 35px;
    max-width: 800px;
    position: relative;
    z-index: 2;
    line-height: 1.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-trust {
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 14px 24px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: trust-item-float 3s ease-in-out infinite;
}

.hero-trust .trust-item:nth-child(1) { animation-delay: 0s; }
.hero-trust .trust-item:nth-child(2) { animation-delay: 0.2s; }
.hero-trust .trust-item:nth-child(3) { animation-delay: 0.4s; }
.hero-trust .trust-item:nth-child(4) { animation-delay: 0.6s; }

@keyframes trust-item-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-trust .trust-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-trust .trust-item i {
    font-size: 24px;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-trust .trust-item span {
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero-buttons .btn-secondary {
    border-color: white;
    color: white;
    border-width: 3px;
}

.hero-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.pulse {
    animation: mega-pulse 2s infinite;
}

@keyframes mega-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

.btn-large {
    padding: 20px 45px;
    font-size: 18px;
}

.hero-contact {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: contact-glow 4s ease-in-out infinite;
}

@keyframes contact-glow {
    0%, 100% { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 15px 60px rgba(255, 255, 255, 0.2), 0 0 80px rgba(255, 255, 255, 0.1); }
}

.hero-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-contact .contact-item i {
    font-size: 28px;
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.hero-contact .contact-label {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 4px;
    font-weight: 600;
}

.hero-contact .contact-value {
    font-size: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: count-up 2s ease-out;
}

@keyframes count-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: title-shine 3s ease-in-out infinite;
}

@keyframes title-shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.section-description {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.2);
    border-color: var(--primary-light);
}

.service-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(79, 70, 229, 0.25);
}

.service-card.featured:hover {
    box-shadow: 0 25px 70px rgba(79, 70, 229, 0.35);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-glow));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.6);
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-top: 2px solid var(--border-color);
    margin-top: 25px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.price-value {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--success-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-link.btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    font-weight: 700;
}

.service-link.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.5);
}

/* Process Section */
.process {
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.process-step {
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
    border-color: var(--primary-light);
}

.process-step::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
    transition: var(--transition);
}

.process-step:hover::after {
    width: 80%;
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Working Process Section */
.working-process {
    background: linear-gradient(180deg, #f0f9ff 0%, #fef3c7 100%);
    padding: 120px 0;
    position: relative;
}

.working-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.working-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    position: relative;
    z-index: 1;
}

.working-process-card {
    background: white;
    border-radius: 25px;
    padding: 55px 45px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid transparent;
}

.working-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--success-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.working-process-card:hover::before {
    transform: scaleX(1);
}

.working-process-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.25);
    border-color: var(--primary-light);
}

.process-number {
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.12;
    position: absolute;
    top: 25px;
    right: 35px;
    line-height: 1;
    animation: number-float 5s ease-in-out infinite;
}

@keyframes number-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.process-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.4);
    transition: var(--transition);
}

.working-process-card:hover .process-icon-wrapper {
    transform: rotate(20deg) scale(1.1);
    box-shadow: 0 25px 55px rgba(79, 70, 229, 0.6);
}

.process-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    z-index: -1;
    animation: icon-pulse 2s infinite;
}

@keyframes icon-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.process-icon-wrapper i {
    font-size: 45px;
    color: white;
}

.working-process-card h3 {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.working-process-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 17px;
}

/* Why Us Section */
.why-us {
    background: white;
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.why-item {
    background: linear-gradient(135deg, white, #f8fafc);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.15);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, white, #f0f9ff);
}

.why-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.35);
    transition: var(--transition);
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 45px rgba(79, 70, 229, 0.5);
}

.why-icon i {
    font-size: 32px;
    color: white;
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #fef3c7 0%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
}

.testimonials-slider {
    display: flex;
    gap: 35px;
    position: relative;
    z-index: 1;
    animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-stars i {
    animation: star-twinkle 2s ease-in-out infinite;
}

.testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-stars i:nth-child(2) { animation-delay: 0.1s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.2s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.3s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes star-twinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.6;
    max-height: 90px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

.author-title {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 5px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    background-size: 200% 200%;
    animation: cta-gradient 10s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes cta-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: cta-glow 5s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
    border-width: 3px;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Blog Preview Section */
.blog-preview {
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(6, 182, 212, 0.2));
    opacity: 0;
    transition: var(--transition);
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 800;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.read-more:hover {
    gap: 15px;
    color: var(--primary-light);
}

/* Comparison Section */
.comparison-section {
    background: linear-gradient(180deg, #f0f9ff 0%, #fef3c7 100%);
    padding: 100px 0;
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.comparison-item {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.comparison-item.bad {
    border: 3px solid #ef4444;
    box-shadow: 0 15px 50px rgba(239, 68, 68, 0.2);
}

.comparison-item.good {
    border: 3px solid var(--success-color);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.2);
}

.comparison-item:hover {
    transform: translateY(-10px);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--border-color);
}

.comparison-header i {
    font-size: 40px;
}

.comparison-item.bad .comparison-header i {
    color: #ef4444;
    animation: bad-shake 0.5s ease-in-out infinite;
}

@keyframes bad-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.comparison-item.good .comparison-header i {
    color: var(--success-color);
    animation: good-bounce 1s ease-in-out infinite;
}

@keyframes good-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.comparison-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    gap: 25px;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.comparison-item.bad .comparison-list li {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.comparison-item.good .comparison-list li {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.comparison-list li:hover {
    transform: translateX(10px);
}

.comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-item.bad .comparison-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.comparison-item.good .comparison-icon {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.comparison-icon i {
    font-size: 24px;
}

.comparison-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.comparison-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-logo i {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translateY(-5px) rotate(15deg);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.contact-info i {
    color: var(--primary-light);
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.5);
}

.contact-icon i {
    color: white;
    font-size: 24px;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 800;
}

.contact-note {
    font-size: 15px;
    color: var(--success-color);
    font-weight: 600;
}

.social-section {
    margin-top: 40px;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.2);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-checkbox {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
    height: 20px;
}

/* Request Form Section */
.request-form-section {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    overflow-x: hidden;
}

.form-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    width: 100%;
    max-width: calc(100% - 40px);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.form-section {
    margin-bottom: 35px;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--border-color);
    font-weight: 800;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    transition: var(--transition);
}

.checkbox-item:hover {
    background: #f0f9ff;
}

.file-upload {
    margin-bottom: 25px;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 50px;
    border: 3px dashed var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    background: #fafafa;
}

.file-label:hover {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.05);
}

.file-label i {
    font-size: 55px;
    color: var(--primary-color);
}

.form-actions {
    text-align: center;
}

.form-note {
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-light);
}

/* Blog Section */
.blog-section {
    background: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

.blog-filter {
    margin-bottom: 40px;
}

.blog-filter h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.blog-main .blog-card.featured-post {
    grid-column: 1 / -1;
}

.blog-main .blog-card.featured-post .blog-image {
    height: 350px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-light);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.pagination-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    font-weight: 600;
}

.pagination-link:hover,
.pagination-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.pagination-link.next {
    width: auto;
    padding: 0 20px;
}

/* Blog Sidebar */
.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
}

.sidebar-widget:hover {
    border-color: var(--primary-light);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
}

.search-box {
    display: flex;
    gap: 12px;
}

.search-box input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.2);
}

.search-box button {
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-dark);
    transition: var(--transition);
    font-weight: 500;
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.category-list a span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
}

.popular-post {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.popular-post:hover {
    transform: translateX(5px);
}

.popular-post img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

.popular-post-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.popular-post-content span {
    font-size: 13px;
    color: var(--text-light);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-cloud a {
    padding: 8px 16px;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition);
    font-weight: 600;
    border: 2px solid transparent;
}

.tag-cloud a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 20px;
    padding: 35px;
}

.newsletter-widget h3 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.newsletter-form button {
    width: 100%;
    padding: 14px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Blog Detail */
.blog-detail {
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
    padding: 80px 0;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-detail-main {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.blog-header {
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.3;
}

.blog-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.blog-featured-image:hover img {
    transform: scale(1.05);
}

.blog-content {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-dark);
}

.blog-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-weight: 800;
}

.blog-content h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin: 35px 0 18px;
    font-weight: 800;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-intro {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left: 5px solid var(--primary-color);
    border-radius: 15px;
    font-style: italic;
}

.blog-conclusion {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 35px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0;
}

.blog-tags span {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 18px;
}

.blog-tags a {
    padding: 8px 18px;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: 20px;
    font-size: 15px;
    transition: var(--transition);
    font-weight: 600;
}

.blog-tags a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: translateY(-2px);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin: 40px 0;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 20px;
}

.share-btn.facebook { background: linear-gradient(135deg, #1877f2, #0c63d4); }
.share-btn.twitter { background: linear-gradient(135deg, #1da1f2, #0a8cd6); }
.share-btn.linkedin { background: linear-gradient(135deg, #0a66c2, #004182); }
.share-btn.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }

.share-btn:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.blog-author {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: 20px;
    margin: 40px 0;
}

.blog-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-author h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.blog-author p {
    color: var(--text-light);
    line-height: 1.7;
}

.blog-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.nav-prev, .nav-next {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: 18px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.nav-prev:hover, .nav-next:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

.nav-next {
    justify-content: flex-end;
    text-align: right;
}

.nav-prev h4, .nav-next h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.related-posts {
    margin: 50px 0;
    overflow: hidden;
}

.related-posts h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 800;
}

/* Related Posts Slider */
.related-posts-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.related-posts-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll-right 30s linear infinite;
}

.related-posts-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.related-post {
    display: block;
    transition: var(--transition);
    width: 100%;
}

.related-post:hover {
    transform: translateY(-10px) scale(1.02);
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-post h4 {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.5;
}

/* Responsive for slider */
@media (max-width: 1200px) {
    .related-posts-track .related-post {
        width: calc((100vw - 100px) / 3); /* Show 3 items on medium screens */
    }
}

@media (max-width: 768px) {
    .related-posts-track .related-post {
        width: calc((100vw - 100px) / 2); /* Show 2 items on small screens */
    }
}

@media (max-width: 480px) {
    .related-posts-track .related-post {
        width: calc(100vw - 100px); /* Show 1 item on very small screens */
    }
}

.blog-comments {
    margin-top: 50px;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.comment img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.comment-header h4 {
    font-weight: 800;
    color: var(--primary-color);
}

.comment-header span {
    font-size: 14px;
    color: var(--text-light);
}

.comment-body {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    line-height: 1.7;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-list a {
    padding: 12px 0;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    transition: var(--transition);
    font-weight: 500;
}

.toc-list a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.25);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.amount {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--text-light);
    font-weight: 600;
}

.pricing-features {
    margin: 40px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 17px;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 20px;
}

.pricing-features .fa-times {
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.faq-item {
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
    border-color: var(--primary-light);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: var(--transition);
    font-weight: 700;
    font-size: 18px;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.faq-answer {
    padding: 25px;
    display: none;
    background: #f8fafc;
    border-radius: 15px;
    line-height: 1.7;
}

.faq-answer.active {
    display: block;
    animation: slide-down 0.3s ease;
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, #fef3c7 0%, #fce7f3 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: rotate(20deg) scale(1.15);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.5);
}

.benefit-icon i {
    font-size: 36px;
    color: white;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 800;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    height: 500px;
}

/* Working Hours */
.working-hours {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.hours-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.hours-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

.hours-icon i {
    font-size: 36px;
    color: white;
}

.hours-list {
    margin-top: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

.hours-item:last-child {
    border-bottom: none;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 16px 32px;
    border-radius: 15px;
    font-weight: 700;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Services Detail */
.services-detail {
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-image {
    height: 100%;
    min-height: 500px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 60px;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.service-badge.premium {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-glow));
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.service-badge.elite {
    background: linear-gradient(135deg, var(--success-color), #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.service-detail-content h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.3;
}

.service-detail-list {
    margin: 30px 0;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 18px;
    color: var(--text-dark);
}

.service-detail-list li i {
    color: var(--success-color);
    font-size: 22px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-card {
    text-align: center;
    padding: 45px 35px;
    background: white;
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
    transition: var(--transition);
}

.process-card:hover .process-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.5);
}

.process-icon i {
    font-size: 40px;
    color: white;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 800;
}

/* Process Diagram Styles */
.process-diagram-section {
    background: linear-gradient(180deg, #f0f9ff 0%, #fef3c7 100%);
    padding: 100px 0;
}

.process-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.diagram-step {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.diagram-step:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.diagram-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.diagram-icon i {
    font-size: 45px;
    color: white;
}

.diagram-step h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.diagram-step p {
    color: var(--text-light);
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.diagram-arrow {
    font-size: 40px;
    color: var(--primary-light);
    animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison-grid,
    .contact-grid,
    .blog-layout,
    .blog-detail-layout,
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        min-height: 300px;
    }

    /* Adjust floating buttons for tablets */
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    .floating-mail {
        width: 55px;
        height: 55px;
        font-size: 22px;
        bottom: 20px;
        right: 85px;
    }

    .floating-phone {
        width: 55px;
        height: 55px;
        font-size: 22px;
        bottom: 20px;
        right: 150px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar .cta-button {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-contact {
        flex-direction: column;
        gap: 25px;
    }

    .section-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .blog-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-title {
        font-size: 36px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    section {
        padding: 70px 0;
    }

    /* Adjust floating buttons for mobile */
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }

    .floating-mail {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
        right: 75px;
    }

    .floating-phone {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
        right: 135px;
    }
}
