* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --gray: #6b7280;
    --dark: #111827;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: linear-gradient(180deg, var(--white) 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.navbar {
    padding: 0.8rem 0;
    transition: padding 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 80px;
    max-width: 250px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
        max-width: 180px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: block;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  margin-top: 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background-color: #000;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Hero overlay for better text visibility */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

/* Responsive video for tablets */
@media (max-width: 968px) {
  .hero {
    height: auto;
    min-height: 300px;
    aspect-ratio: 16/9;
  }
  
  .hero-video {
    object-fit: contain;
  }
}

/* Responsive video for mobile */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 250px;
    margin-top: 60px;
    aspect-ratio: 16/9;
  }
  
  .hero-video {
    object-fit: contain;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero {
    height: auto;
    min-height: 200px;
    aspect-ratio: 16/9;
  }
  
  .hero-video {
    object-fit: contain;
  }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1.2s ease;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.2));
    color: #22c55e;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-badge.light {
    background: rgba(255,255,255,0.2);
    color: white;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header.light h2 {
    color: white;
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
    overflow: hidden;
}

.section-bg-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-svg {
    position: absolute;
    width: 200px;
    height: 200px;
}

.decor-top-right {
    top: -50px;
    right: -50px;
    animation: rotate-slow 30s linear infinite;
}

.decor-bottom-left {
    bottom: -50px;
    left: -50px;
    animation: rotate-slow 25s linear infinite reverse;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    border-radius: 50%;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-color);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Why Choose Us */
.why-choose {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.why-choose-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.animated-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.animated-lines span {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: lines-move 8s linear infinite;
}

.animated-lines span:nth-child(1) { left: 10%; animation-delay: 0s; }
.animated-lines span:nth-child(2) { left: 30%; animation-delay: 1.5s; }
.animated-lines span:nth-child(3) { left: 50%; animation-delay: 3s; }
.animated-lines span:nth-child(4) { left: 70%; animation-delay: 4.5s; }
.animated-lines span:nth-child(5) { left: 90%; animation-delay: 6s; }

@keyframes lines-move {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-choose-left h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.why-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

.success-illustration {
    max-width: 400px;
}

.success-illustration svg {
    width: 100%;
    height: auto;
}

.chart-line-animate {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw-line 2s ease forwards;
}

@keyframes draw-line {
    to { stroke-dashoffset: 0; }
}

.chart-dot {
    opacity: 0;
    animation: dot-appear 0.5s ease forwards;
}

.chart-dot:nth-child(2) { animation-delay: 0.3s; }
.chart-dot:nth-child(3) { animation-delay: 0.6s; }
.chart-dot:nth-child(4) { animation-delay: 0.9s; }
.chart-dot:nth-child(5) { animation-delay: 1.2s; }
.chart-dot:nth-child(6) { animation-delay: 1.5s; }
.chart-dot:nth-child(7) { animation-delay: 1.8s; }

@keyframes dot-appear {
    to { opacity: 1; }
}

.chart-dot.pulse {
    animation: dot-appear 0.5s ease forwards, pulse-glow 2s ease-in-out infinite;
    animation-delay: 1.8s, 2.3s;
}

@keyframes pulse-glow {
    0%, 100% { r: 8; opacity: 1; }
    50% { r: 12; opacity: 0.7; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-box-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.feature-box-icon svg {
    width: 100%;
    height: 100%;
}

.feature-box h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-box p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.about-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.about-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.05));
    top: -200px;
    right: -100px;
}

.about-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(59,130,246,0.05));
    bottom: -150px;
    left: -100px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-illustration {
    max-width: 500px;
}

.about-svg {
    width: 100%;
    height: auto;
}

.about-float-1, .about-float-2, .about-float-3, .about-float-4 {
    animation: about-float 3s ease-in-out infinite;
}

.about-float-2 { animation-delay: 0.5s; }
.about-float-3 { animation-delay: 1s; }
.about-float-4 { animation-delay: 1.5s; }

@keyframes about-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.dot-pulse {
    animation: dot-pulse-anim 2s ease-in-out infinite;
}

@keyframes dot-pulse-anim {
    0%, 100% { r: 5; opacity: 1; }
    50% { r: 8; opacity: 0.5; }
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-item i {
    color: #22c55e;
    font-size: 1.2rem;
}

.about-feature-item span {
    font-weight: 500;
    color: var(--dark);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 1.3rem;
    color: #22c55e;
}

.stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(239,68,68,0.2));
}

.stat-item:nth-child(2) .stat-icon i {
    color: #ef4444;
}

.stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(59,130,246,0.2));
}

.stat-item:nth-child(3) .stat-icon i {
    color: #3b82f6;
}

.stat-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
}

.stat-info h3 {
    font-size: 2.2rem;
    color: var(--dark);
    line-height: 1;
}

.stat-info span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-info p {
    width: 100%;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.contact-decor-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: rotate-slow 40s linear infinite;
}

.contact-decor-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 50px;
    animation: rotate-slow 30s linear infinite reverse;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-info {
    color: white;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.contact-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: white;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: white;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.contact-illustration {
    margin: 30px 0;
    max-width: 300px;
}

.contact-illustration svg {
    width: 100%;
    height: auto;
}

.contact-float-1, .contact-float-2, .contact-float-3, .contact-float-4 {
    animation: contact-float 4s ease-in-out infinite;
}

.contact-float-2 { animation-delay: 1s; }
.contact-float-3 { animation-delay: 2s; }
.contact-float-4 { animation-delay: 3s; }

@keyframes contact-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

.paper-plane-animate {
    animation: paper-fly 3s ease-in-out infinite;
}

@keyframes paper-fly {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(20px, 0) rotate(0deg); }
    75% { transform: translate(10px, 10px) rotate(-5deg); }
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}

.success-message {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0f1419 100%);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    animation: fadeInUp 0.6s ease;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-section .contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.footer-section .contact-info i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Floating Enquiry Button */
.enquiry-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 170px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.enquiry-float:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: scale(1.1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #d97706;
    transform: translateY(-5px);
}

/* Enquiry Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    color: var(--gray);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--text-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 1001;
    border-radius: 8px;
    padding: 8px 0;
    top: 100%;
    left: 0;
    margin-top: 10px;
    border-top: 3px solid var(--primary-color);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: var(--text-color);
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 24px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 968px) {
    /* Disable hover-open on touch so tap toggles control visibility */
    .dropdown:hover .dropdown-content {
        display: none;
    }
}

.dropdown.open .dropdown-content {
    display: block;
}

.dropbtn i {
    font-size: 0.8rem;
    margin-left: 8px;
    transition: transform 0.3s;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown.open .dropbtn i {
    transform: rotate(180deg);
}

/* ============================================
   ENHANCED SERVICE PAGE STYLES
   ============================================ */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::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: 0.5;
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.service-hero-text {
    animation: fadeInLeft 0.8s ease;
}

.service-hero-visual {
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.service-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-hero h1 i {
    margin-right: 15px;
    opacity: 0.9;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.service-hero .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.service-hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Service Hero SVG Illustrations */
.service-hero-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
}

.service-hero-svg .float-element {
    animation: service-float 3s ease-in-out infinite;
}

.service-hero-svg .float-element-2 {
    animation: service-float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.service-hero-svg .float-element-3 {
    animation: service-float 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes service-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-hero-svg .pulse-element {
    animation: service-pulse 2s ease-in-out infinite;
}

@keyframes service-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.service-hero-svg .rotate-element {
    animation: service-rotate 10s linear infinite;
    transform-origin: center;
}

@keyframes service-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating shapes for hero */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation: float-slow 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: 10%;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 5%;
    animation: float-slow 6s ease-in-out infinite;
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
    position: relative;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

.service-main {
    animation: fadeInUp 0.6s ease;
}

.service-main h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    border-radius: 2px;
}

.service-main h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-main h3 i {
    color: #22c55e;
    font-size: 1.2rem;
}

.service-main p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Enhanced Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(34,197,94,0.2);
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .feature-icon i {
    color: #22c55e;
    font-size: 1.3rem;
}

.feature-item i.fas.fa-check-circle {
    color: #22c55e;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.feature-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #3b82f6, #8b5cf6, #f59e0b);
    border-radius: 2px;
    z-index: 0;
}

.step {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(34,197,94,0.3);
}

.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 5px 20px rgba(59,130,246,0.3);
}

.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 5px 20px rgba(139,92,246,0.3);
}

.step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 5px 20px rgba(245,158,11,0.3);
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.tech-badge {
    background: linear-gradient(135deg, var(--white), #f8fafc);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(37,99,235,0.1);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37,99,235,0.15);
    border-color: rgba(37,99,235,0.3);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefits-list li {
    padding: 12px 15px;
    color: var(--text-color);
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefits-list i {
    color: #f59e0b;
    font-size: 1rem;
}

/* Enhanced Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.sidebar-card.highlight h3,
.sidebar-card.highlight p {
    color: white;
}

.sidebar-card.highlight .btn-primary {
    background: white;
    color: #22c55e;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.sidebar-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-card .btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}

.service-links {
    list-style: none;
}

.service-links li {
    margin-bottom: 12px;
}

.service-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.service-links a:hover {
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(59,130,246,0.1));
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-links i {
    color: #22c55e;
    font-size: 0.8rem;
}

/* Service Stats Box */
.service-stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.service-stat {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(34,197,94,0.05), rgba(59,130,246,0.05));
    border-radius: 12px;
}

.service-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #22c55e;
    display: block;
}

.service-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Service CTA Section */
.service-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.service-cta .container {
    position: relative;
    z-index: 1;
}

.service-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.service-cta .btn {
    background: white;
    color: var(--primary-color);
    padding: 15px 35px;
    font-size: 1rem;
    border-radius: 12px;
}

.service-links li {
    margin-bottom: 10px;
}

.service-links a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.service-links a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 15px;
}

.service-links i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.contact-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-card i {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Enhancements */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
}

.footer-section .contact-info i {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-float,
    .enquiry-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float {
        bottom: 90px;
    }
    
    .enquiry-float {
        bottom: 150px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 25px;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .nav-menu .dropdown.open .dropdown-content {
        display: block;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

* {
    -webkit-tap-highlight-color: transparent;
}


/* Smooth transitions for better UX */
a, button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* ========== PRICING PAGE STYLES ========== */

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Billing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.toggle-label {
    font-weight: 600;
    color: var(--gray);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--primary-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.savings {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 8px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-ribbon {
    position: absolute;
    top: -15px;
    right: -5px;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.pricing-header-card h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.pricing-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Pricing Amount */
.pricing-amount {
    margin: 25px 0;
    text-align: center;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 5px;
}

.period {
    color: var(--gray);
    font-size: 1rem;
}

.price-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Button in Card */
.pricing-card .btn {
    margin-bottom: 30px;
}

/* Pricing Features */
.pricing-features {
    flex: 1;
}

.pricing-features h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-category {
    background: var(--light-bg);
    padding: 12px 0;
    margin-top: 15px;
    font-weight: 600;
    border: none !important;
    color: var(--primary-color);
}

.pricing-features i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.pricing-features .fa-check {
    color: #10b981;
}

.pricing-features .fa-times {
    color: var(--gray);
    opacity: 0.5;
}

/* Custom Package */
.custom-package {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    border: 2px dashed var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.custom-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.custom-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.custom-content i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--light-bg);
}

.comparison-table tbody tr:hover {
    background: var(--light-bg);
}

.comparison-table .category-row {
    background: var(--light-bg);
    font-weight: 700;
}

.comparison-table .category-row td {
    color: var(--primary-color);
    padding: 15px 20px;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-header {
    padding: 20px;
    background: var(--light-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-header:hover {
    background: rgba(37, 99, 235, 0.1);
}

.faq-header h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

.faq-header i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-header.active i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 20px;
    display: none;
    color: var(--gray);
    line-height: 1.8;
}

.faq-content.active {
    display: block;
}

.faq-content p {
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 1200;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        border-radius: 0;
        width: 100%;
        border-left: 4px solid transparent;
    }

    .nav-menu a:hover {
        border-left-color: var(--primary-color);
        background: rgba(37, 99, 235, 0.05);
    }

    .hamburger {
        display: flex;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-amount .price {
        font-size: 2rem;
    }
    
    .pricing-toggle {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-package {
        padding: 30px 20px;
    }
}

/* Welcome Section Styles */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    top: -100px;
    right: -100px;
    animation: float-slow 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    bottom: -50px;
    left: -50px;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: 50%;
    left: 50%;
    animation: float-slow 12s ease-in-out infinite;
}

.floating-shape {
    position: absolute;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation: rotate-slow 20s linear infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation: rotate-slow 15s linear infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.welcome-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.welcome-left {
    position: relative;
}

.welcome-tag {
    color: #22c55e;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    padding-left: 40px;
}

.welcome-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #22c55e;
    transform: translateY(-50%);
}

.welcome-company {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 5px;
    background: linear-gradient(135deg, var(--dark) 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 20px;
}

.experience-highlight {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.exp-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.exp-plus {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
}

.exp-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

/* Vector Illustration Styles */
.welcome-illustration {
    width: 100%;
    max-width: 450px;
    margin: 20px 0 30px;
}

.digital-marketing-svg {
    width: 100%;
    height: auto;
}

/* SVG Animations */
.blob-animate {
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% { rx: 200; ry: 150; }
    50% { rx: 180; ry: 170; }
}

.float-element {
    animation: float-element 4s ease-in-out infinite;
}

@keyframes float-element {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bar-animate {
    animation: bar-grow 2s ease-out forwards;
    transform-origin: bottom;
}

.bar-1 { animation-delay: 0.1s; }
.bar-2 { animation-delay: 0.2s; }
.bar-3 { animation-delay: 0.3s; }
.bar-4 { animation-delay: 0.4s; }
.bar-5 { animation-delay: 0.5s; }

@keyframes bar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.icon-float {
    animation: icon-bounce 3s ease-in-out infinite;
}

.icon-1 { animation-delay: 0s; }
.icon-2 { animation-delay: 0.5s; }
.icon-3 { animation-delay: 1s; }
.icon-4 { animation-delay: 1.5s; }

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.dash-animate {
    stroke-dashoffset: 100;
    animation: dash-flow 3s linear infinite;
}

@keyframes dash-flow {
    to { stroke-dashoffset: 0; }
}

.social-icon {
    animation: social-pop 0.5s ease-out forwards;
    opacity: 0;
    transform: scale(0);
}

.social-1 { animation-delay: 0.8s; }
.social-2 { animation-delay: 1s; }
.social-3 { animation-delay: 1.2s; }

@keyframes social-pop {
    to { opacity: 1; transform: scale(1); }
}

.rocket-animate {
    animation: rocket-fly 4s ease-in-out infinite;
}

@keyframes rocket-fly {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

/* Entrance Animations */
.animate-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    animation: slide-right 0.8s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(50px);
    animation: slide-left 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes slide-right {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-left {
    to { opacity: 1; transform: translateX(0); }
}

.animate-pop {
    opacity: 0;
    transform: scale(0.8);
    animation: pop-in 0.5s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes pop-in {
    to { opacity: 1; transform: scale(1); }
}

.welcome-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.welcome-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 160px;
    transition: all 0.3s ease;
    cursor: default;
}

.welcome-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #f59e0b;
    transition: transform 0.3s ease;
}

.welcome-feature-item:hover .feature-icon-box {
    transform: rotate(10deg) scale(1.1);
}

.feature-icon-box i.fa-users {
    color: #3b82f6;
}

.welcome-feature-item:nth-child(2) .feature-icon-box {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 0.95rem;
    color: var(--dark);
}

.feature-text span {
    font-size: 0.85rem;
    color: var(--gray);
}

.welcome-feature-item.highlight-box {
    background: linear-gradient(135deg, white 0%, #f0fdf4 100%);
    border: 2px solid #22c55e;
    padding: 18px;
    flex-direction: column;
    text-align: center;
    min-width: 140px;
    flex: 0 0 auto;
}

.welcome-feature-item.highlight-box:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-content span {
    font-size: 0.85rem;
    color: var(--dark);
}

.highlight-content strong {
    font-size: 1rem;
    color: #22c55e;
}

/* Right Side */
.welcome-right {
    padding-top: 20px;
}

.welcome-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Stats Mini Cards */
.stats-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.stat-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1;
    transition: all 0.3s ease;
}

.stat-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.stat-mini-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #3b82f6;
}

.stat-mini-icon.happy {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #f59e0b;
}

.stat-mini-info {
    display: flex;
    flex-direction: column;
}

.stat-mini-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-mini-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.welcome-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-header i:first-child {
    color: #22c55e;
    font-size: 1.2rem;
}

.accordion-header span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #22c55e;
    flex: 1;
}

.accordion-arrow {
    color: var(--gray);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 20px 20px;
}

.accordion-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--dark);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: var(--dark);
    color: white;
}

/* Welcome Section Responsive */
@media (max-width: 968px) {
    .welcome-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-company {
        font-size: 2rem;
    }
    
    .exp-number {
        font-size: 3rem;
    }
    
    .exp-plus {
        font-size: 2.5rem;
    }
    
    .welcome-heading {
        font-size: 1.6rem;
    }
    
    .welcome-illustration {
        max-width: 400px;
        margin: 15px auto 25px;
    }
    
    .floating-shape {
        display: none;
    }
    
    .stats-mini {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 50px 0;
    }
    
    .welcome-tag {
        font-size: 0.85rem;
        padding-left: 35px;
    }
    
    .welcome-tag::before {
        width: 25px;
    }
    
    .welcome-company {
        font-size: 1.75rem;
    }
    
    .welcome-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .welcome-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .welcome-feature-item {
        min-width: unset;
        padding: 12px 15px;
    }
    
    .welcome-feature-item.highlight-box {
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }
    
    .experience-highlight {
        margin-bottom: 20px;
    }
    
    .exp-number {
        font-size: 2.5rem;
    }
    
    .exp-plus {
        font-size: 2rem;
    }
    
    .exp-text {
        font-size: 1.1rem;
    }
    
    .welcome-illustration {
        max-width: 100%;
        margin: 10px 0 20px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .welcome-heading {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .stats-mini {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-mini-card {
        padding: 12px 15px;
    }
    
    .stat-mini-number {
        font-size: 1.3rem;
    }
    
    .accordion-header {
        padding: 15px;
    }
    
    .accordion-header span {
        font-size: 1rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 15px 15px;
    }
    
    .explore-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Disable animations on mobile for performance */
    .animate-slide-right,
    .animate-slide-left {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .animate-pop {
        animation: pop-in 0.4s ease-out forwards;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 40px 0;
    }
    
    .welcome-company {
        font-size: 1.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .exp-plus {
        font-size: 1.5rem;
    }
    
    .exp-text {
        font-size: 1rem;
    }
    
    .feature-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-text strong {
        font-size: 0.85rem;
    }
    
    .feature-text span {
        font-size: 0.75rem;
    }
    
    .stat-mini-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .welcome-heading {
        font-size: 1.25rem;
    }
    
    .welcome-illustration svg {
        max-height: 250px;
    }
}

/* Enhanced Responsive Styles for All Sections */

/* Tablet Styles */
@media (max-width: 968px) {
    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    /* Services */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    /* Why Choose Us */
    .why-choose {
        padding: 70px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-left {
        text-align: center;
    }
    
    .success-illustration {
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-illustration {
        max-width: 400px;
        margin: 0 auto;
        order: -1;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-illustration {
        display: none;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .decor-svg {
        width: 120px;
        height: 120px;
    }
    
    /* Why Choose Us */
    .why-choose {
        padding: 50px 0;
    }
    
    .why-choose-left h2 {
        font-size: 1.75rem;
    }
    
    .why-lead {
        font-size: 1rem;
    }
    
    .success-illustration {
        max-width: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-box {
        padding: 20px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }
    
    .feature-box-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .animated-lines {
        display: none;
    }
    
    /* About */
    .about {
        padding: 50px 0;
    }
    
    .about-illustration {
        max-width: 300px;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }
    
    .about-feature-item {
        justify-content: flex-start;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 15px;
    }
    
    .stat-icon {
        margin-bottom: 0;
    }
    
    .stat-info {
        justify-content: flex-start;
    }
    
    .stat-info p {
        width: auto;
    }
    
    .about-shape {
        display: none;
    }
    
    /* Contact */
    .contact {
        padding: 50px 0;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-form {
        padding: 25px;
        border-radius: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .contact-decor-1,
    .contact-decor-2 {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    /* Services */
    .service-card {
        padding: 18px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Why Choose */
    .why-choose-left h2 {
        font-size: 1.5rem;
    }
    
    .feature-box {
        padding: 15px;
    }
    
    .feature-box h4 {
        font-size: 1rem;
    }
    
    .feature-box p {
        font-size: 0.85rem;
    }
    
    /* About */
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-info h3 {
        font-size: 1.8rem;
    }
    
    .stat-info span {
        font-size: 1.2rem;
    }
    
    /* Contact */
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* ============================================
   SERVICE PAGES RESPONSIVE STYLES
   ============================================ */

/* Tablet Styles for Service Pages */
@media (max-width: 968px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-hero-text {
        animation: fadeInUp 0.8s ease;
    }
    
    .service-hero-visual {
        order: -1;
        animation: fadeInDown 0.8s ease;
    }
    
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .service-hero-svg {
        max-width: 350px;
    }
    
    .service-hero-stats {
        justify-content: center;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .hero-shape-1 {
        width: 150px;
        height: 150px;
    }
    
    .hero-shape-2 {
        width: 100px;
        height: 100px;
    }
    
    .hero-shape-3 {
        display: none;
    }
}

/* Mobile Styles for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        padding: 90px 0 50px;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-hero h1 i {
        display: block;
        margin-bottom: 10px;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .service-hero .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .service-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    .service-hero-svg {
        max-width: 280px;
    }
    
    .service-details {
        padding: 50px 0;
    }
    
    .service-main h2 {
        font-size: 1.6rem;
    }
    
    .service-main h3 {
        font-size: 1.2rem;
        margin: 30px 0 15px;
    }
    
    .service-main p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item .feature-icon {
        margin: 0 auto 15px;
    }
    
    .feature-item i.fas.fa-check-circle {
        margin: 0 auto 10px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .step-content {
        flex: 1;
    }
    
    .tech-stack {
        justify-content: center;
    }
    
    .tech-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .service-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card {
        padding: 25px;
    }
    
    .service-stats-box {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-cta {
        padding: 40px 0;
    }
    
    .service-cta h2 {
        font-size: 1.6rem;
    }
    
    .service-cta p {
        font-size: 1rem;
    }
    
    .hero-shapes {
        display: none;
    }
}

/* Small Mobile for Service Pages */
@media (max-width: 480px) {
    .service-hero {
        padding: 85px 0 40px;
    }
    
    .service-hero h1 {
        font-size: 1.5rem;
    }
    
    .service-hero p {
        font-size: 0.95rem;
    }
    
    .service-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-stat {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255,255,255,0.1);
        padding: 12px 20px;
        border-radius: 10px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .service-hero-svg {
        max-width: 220px;
    }
    
    .service-details {
        padding: 40px 0;
    }
    
    .service-main h2 {
        font-size: 1.4rem;
    }
    
    .service-main h3 {
        font-size: 1.1rem;
    }
    
    .service-main p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .feature-item {
        padding: 18px;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .step {
        padding: 15px;
        gap: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .step h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .benefits-list li {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .sidebar-card h3 {
        font-size: 1.1rem;
    }
    
    .service-links a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .service-stats-box {
        gap: 10px;
    }
    
    .service-stat {
        padding: 15px 10px;
    }
    
    .service-stat-value {
        font-size: 1.5rem;
    }
    
    .service-stat-label {
        font-size: 0.75rem;
    }
    
    .service-cta {
        padding: 35px 0;
    }
    
    .service-cta h2 {
        font-size: 1.4rem;
    }
    
    .service-cta p {
        font-size: 0.95rem;
    }
    
    .service-cta .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ============================================
   ENHANCED PRICING PAGE RESPONSIVE STYLES
   ============================================ */

/* Enhanced Pricing Hero */
.pricing-hero {
    position: relative;
    overflow: hidden;
}

.pricing-hero::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");
}

.pricing-hero-content {
    position: relative;
    z-index: 1;
}

.pricing-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.pricing-hero-text {
    animation: fadeInLeft 0.8s ease;
}

.pricing-hero-visual {
    animation: fadeInRight 0.8s ease;
}

.pricing-hero-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Enhanced Pricing Cards */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Pricing Tablet */
@media (max-width: 968px) {
    .pricing-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .pricing-hero-visual {
        order: -1;
    }
    
    .pricing-hero-svg {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Pricing Mobile */
@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-hero-svg {
        max-width: 250px;
    }
}

/* Pricing Small Mobile */
@media (max-width: 480px) {
    .pricing-hero h1 {
        font-size: 1.6rem;
    }
    
    .pricing-hero p {
        font-size: 1rem;
    }
    
    .pricing-hero-svg {
        max-width: 200px;
    }
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */

/* Portfolio Hero */
.portfolio-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.portfolio-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.portfolio-hero .hero-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.portfolio-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.portfolio-hero h1 .gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-hero > p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 50px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.hero-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
}

.hero-stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.hero-stat-card .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light {
    color: white;
}

.section-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header.light .section-badge {
    background: rgba(255,255,255,0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-header.light h2 {
    color: white;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

/* Case Study Section */
.case-study-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card.featured {
    border: 2px solid var(--primary-color);
}

.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.client-badge {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-card-header .period {
    color: var(--gray);
    font-size: 0.9rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.metric-item {
    text-align: center;
    padding: 15px 10px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: scale(1.05);
}

.metric-item.highlight {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
}

.metric-item.highlight .metric-label {
    color: rgba(255,255,255,0.8);
}

.metric-icon {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.metric-item.highlight .metric-icon {
    color: white;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray);
}

.case-chart {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 20px;
}

.case-chart img {
    width: 100%;
    border-radius: 8px;
}

.chart-placeholder {
    position: relative;
}

.mini-chart {
    width: 100%;
    height: 100px;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--gray);
}

.case-result {
    display: flex;
    align-items: center;
    gap: 15px;
}

.result-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.result-badge.success {
    background: #dcfce7;
    color: #16a34a;
}

.case-result p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ROI Card */
.roi-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.roi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.roi-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.roi-period {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.roi-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.roi-circle {
    position: relative;
    width: 160px;
    height: 160px;
}

.roi-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.roi-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.roi-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
}

.roi-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.roi-breakdown {
    margin-bottom: 25px;
}

.roi-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.roi-item:last-child {
    border-bottom: none;
}

.roi-item.highlight {
    background: rgba(16, 185, 129, 0.1);
    margin: 0 -30px;
    padding: 12px 30px;
    border-radius: 8px;
}

.roi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 12px;
}

.roi-dot.expense { background: #ef4444; }
.roi-dot.revenue { background: #10b981; }
.roi-dot.profit { background: #f59e0b; }

.roi-name {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.roi-amount {
    font-weight: 700;
    font-size: 1rem;
}

.roi-months h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.month-bars {
    display: flex;
    gap: 8px;
    height: 80px;
    align-items: flex-end;
}

.month-bar {
    flex: 1;
    background: linear-gradient(to top, #10b981, #34d399);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.month-bar:hover {
    transform: scaleY(1.05);
}

.month-bar::before {
    content: attr(data-roi);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    background: white;
    color: #1e293b;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.month-bar:hover::before {
    opacity: 1;
}

.month-bar::after {
    content: attr(data-month);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
}

/* SEO Results Section */
.seo-results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.seo-results-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.seo-metric-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.seo-metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.seo-metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: white;
}

.seo-metric-icon.clicks { background: #4285f4; }
.seo-metric-icon.impressions { background: #a855f7; }
.seo-metric-icon.ctr { background: #f59e0b; }
.seo-metric-icon.position { background: #10b981; }

.seo-metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.seo-metric-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.seo-metric-trend {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

.seo-metric-trend.up {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.seo-metric-trend.stable {
    background: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

/* Real Screenshot Styles */
.real-screenshot {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
}

.real-screenshot .screenshot-label {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.real-screenshot img {
    width: 100%;
    display: block;
}

/* SEO Screenshot Container */
.seo-screenshot-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.screenshot-badge {
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc04, #34a853);
    color: white;
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.seo-screenshot {
    padding: 0;
}

.seo-screenshot img {
    width: 100%;
    display: block;
}

.screenshot-caption {
    padding: 15px 20px;
    background: #f8fafc;
    color: var(--gray);
    font-size: 0.85rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.screenshot-caption i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Proof Section */
.proof-section {
    padding: 80px 0;
    background: white;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.proof-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.proof-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-header i {
    font-size: 1.5rem;
}

.proof-header h4 {
    font-size: 1.1rem;
    margin: 0;
}

.proof-image {
    padding: 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.proof-image img {
    width: 100%;
    display: block;
}

.proof-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
}

.proof-stat {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #e5e7eb;
}

.proof-stat:last-child {
    border-right: none;
}

.proof-stat .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.proof-stat .label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Trust Badges */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Websites Section */
.websites-section {
    padding: 80px 0;
    background: white;
}

.websites-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.website-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.website-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.website-preview {
    padding: 15px;
}

.browser-mockup {
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.browser-dots {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: #e2e8f0;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-dots span:first-child { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:last-child { background: #22c55e; }

.browser-content {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.browser-content.gradient-1 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.browser-content.gradient-2 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.browser-content.gradient-3 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.browser-content.gradient-4 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.browser-content.gradient-5 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.browser-content.gradient-6 { background: linear-gradient(135deg, #ec4899, #db2777); }
.browser-content.gradient-7 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.browser-content.gradient-8 { background: linear-gradient(135deg, #f472b6, #ec4899); }
.browser-content.gradient-9 { background: linear-gradient(135deg, #64748b, #475569); }
.browser-content.gradient-10 { background: linear-gradient(135deg, #a855f7, #9333ea); }

.website-info {
    padding: 15px;
}

.website-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.website-info p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.website-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.website-tags span {
    background: var(--light-bg);
    color: var(--gray);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.websites-more {
    text-align: center;
    color: var(--gray);
    font-style: italic;
}

/* Revenue Section */
.revenue-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.revenue-chart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.revenue-chart {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.chart-bars {
    display: flex;
    gap: 20px;
    height: 250px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.chart-month {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bars-group {
    display: flex;
    gap: 5px;
    height: 200px;
    align-items: flex-end;
}

.bar {
    width: 25px;
    border-radius: 4px 4px 0 0;
    height: var(--height);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.bar:hover {
    transform: scaleY(1.05);
}

.bar.revenue {
    background: linear-gradient(to top, #22c55e, #4ade80);
}

.bar.profit {
    background: linear-gradient(to top, #f59e0b, #fbbf24);
}

.month-label {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.revenue { background: #22c55e; }
.legend-color.profit { background: #f59e0b; }

.revenue-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.summary-card:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.08);
}

.summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.summary-content {
    flex: 1;
}

.summary-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.summary-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Portfolio Responsive */
@media (max-width: 1200px) {
    .websites-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 968px) {
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .websites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .revenue-chart-wrapper {
        grid-template-columns: 1fr;
    }
    
    .revenue-summary {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .summary-card {
        flex: 1 1 calc(50% - 10px);
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 140px 0 60px;
    }
    
    .portfolio-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats-grid {
        gap: 15px;
    }
    
    .hero-stat-card {
        padding: 20px 15px;
    }
    
    .hero-stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .websites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .chart-bars {
        gap: 10px;
    }
    
    .bar {
        width: 18px;
    }
    
    .summary-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .portfolio-hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .hero-stat-card .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-stat-card .stat-label {
        font-size: 0.75rem;
    }
    
    .case-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
    
    .seo-metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .seo-metric-value {
        font-size: 1.5rem;
    }
    
    .websites-grid {
        grid-template-columns: 1fr;
    }
    
    .browser-content {
        height: 120px;
    }
    
    .chart-bars {
        height: 180px;
    }
    
    .bars-group {
        height: 150px;
    }
    
    .bar {
        width: 14px;
    }
}

/* ============================================
   PORTFOLIO - 10 CLIENTS SHOWCASE
   ============================================ */

/* Filter Tabs */
.client-filter-section {
    padding: 30px 0;
    background: var(--light-bg);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 25px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Clients Showcase */
.clients-showcase {
    padding: 60px 0;
    background: var(--light-bg);
}

.client-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease, opacity 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.client-card.featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.client-card.featured::before {
    content: '★ Featured Client';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.client-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.client-logo.gradient-1 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.client-logo.gradient-2 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.client-logo.gradient-3 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.client-logo.gradient-4 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.client-logo.gradient-5 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.client-logo.gradient-6 { background: linear-gradient(135deg, #ec4899, #db2777); }
.client-logo.gradient-7 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.client-logo.gradient-8 { background: linear-gradient(135deg, #f472b6, #ec4899); }
.client-logo.gradient-9 { background: linear-gradient(135deg, #64748b, #475569); }

.client-info h3 {
    font-size: 1.3rem;
    margin-bottom: 3px;
    color: var(--text-color);
}

.client-industry {
    font-size: 0.9rem;
    color: var(--gray);
}

.client-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.client-badges .badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge.google {
    background: #e8f0fe;
    color: #1a73e8;
}

.badge.seo {
    background: #dcfce7;
    color: #16a34a;
}

.badge.website {
    background: #fef3c7;
    color: #d97706;
}

.client-results {
    padding: 30px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: scale(1.05);
}

.result-card.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.result-card.primary .result-label {
    color: rgba(255,255,255,0.8);
}

.result-value {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.screenshots-grid.single {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
}

.screenshot-item .screenshot-label {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-placeholder {
    display: none;
    padding: 60px 20px;
    text-align: center;
    color: var(--gray);
}

.screenshot-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
    display: block;
}

.screenshot-item.no-image .screenshot-placeholder {
    display: block;
}

.screenshot-item.no-image img {
    display: none;
}

/* Client Testimonial */
.client-testimonial {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 20px;
}

.client-testimonial p {
    font-style: italic;
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Delivered */
.services-delivered {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-delivered span {
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.services-delivered span i {
    color: #22c55e;
}

/* Proof Section */
.proof-section {
    padding: 80px 0;
    background: white;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.proof-card {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
}

.proof-card h4 {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 15px 20px;
    font-size: 1rem;
    margin: 0;
}

.proof-card h4 i {
    margin-right: 10px;
}

.proof-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-bottom: 1px solid #e5e7eb;
}

.proof-stats {
    padding: 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.proof-stat {
    font-size: 0.85rem;
    color: var(--gray);
}

.proof-stat span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3px;
}

/* Portfolio Clients Responsive */
@media (max-width: 968px) {
    .client-filter-section {
        top: 70px;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .client-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .client-card.featured::before {
        position: static;
        display: inline-block;
        margin: 20px 20px 0;
    }
    
    .client-info h3 {
        font-size: 1.1rem;
    }
    
    .result-value {
        font-size: 1.4rem;
    }
    
    .result-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .filter-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .result-value {
        font-size: 1.2rem;
    }
    
    .result-label {
        font-size: 0.75rem;
    }
    
    .client-badges .badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .services-delivered span {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

/* ===========================================
   BLOG LANDING PAGE STYLES
   =========================================== */

/* Blog Hero Section */
.blog-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3730a3 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.blog-hero .hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 51, 234, 0.15));
}

.blog-hero .hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.blog-hero .hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.blog-hero .hero-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.hero-particles span:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.hero-particles span:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 10s; }
.hero-particles span:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.hero-particles span:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 11s; }
.hero-particles span:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; }
.hero-particles span:nth-child(7) { left: 70%; animation-delay: 0s; animation-duration: 15s; }
.hero-particles span:nth-child(8) { left: 80%; animation-delay: 2s; animation-duration: 12s; }
.hero-particles span:nth-child(9) { left: 85%; animation-delay: 4s; animation-duration: 14s; }
.hero-particles span:nth-child(10) { left: 95%; animation-delay: 1s; animation-duration: 10s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.blog-hero-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.animate-bounce {
    animation: bounceIn 0.8s ease forwards;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-hero h1.animate-title {
    opacity: 0;
    animation: slideUp 0.8s ease 0.2s forwards;
}

.blog-hero .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.blog-hero p.animate-fade {
    opacity: 0;
    animation: slideUp 0.8s ease 0.4s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Blog Search */
.blog-search-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.blog-search-wrapper.animate-scale {
    opacity: 0;
    animation: scaleIn 0.6s ease 0.6s forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 8px 8px 8px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.search-box:focus-within .search-icon {
    color: #fff;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 10px;
    color: #fff;
    font-size: 1.05rem;
    outline: none;
    min-width: 0;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border: none;
    border-radius: 50px;
    padding: 15px 28px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.search-btn i {
    transition: transform 0.3s ease;
}

.search-btn:hover i {
    transform: translateX(3px);
}

/* Search Suggestions */
.search-suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.suggestion-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.suggestion-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* Search Results Preview */
.search-results-preview {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 100;
}

.search-results-preview.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8fafc;
}

.search-result-item > i:first-child {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.search-result-item > i:last-child {
    color: var(--gray);
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.search-result-item:hover > i:last-child {
    opacity: 1;
    transform: translateX(0);
}

.search-result-item div {
    flex: 1;
}

.search-result-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

.search-result-item mark {
    background: #fef08a;
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
}

.search-result-item span {
    font-size: 0.85rem;
    color: var(--gray);
}

.search-results-preview .no-results {
    padding: 30px;
    text-align: center;
    color: var(--gray);
}

.search-results-preview .no-results i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

/* Blog Categories Section */
.blog-categories {
    padding: 60px 0 40px;
    background: var(--white);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.category-tab {
    padding: 12px 24px;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-tab:hover {
    background: #e0e7ff;
    color: var(--primary-color);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: #fff;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Featured Post Section */
.featured-post-section {
    padding: 60px 0 80px;
    background: var(--light-bg);
}

.featured-post {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.featured-post.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.featured-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-post:hover .featured-image img {
    transform: scale(1.08);
}

.featured-image .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-image.no-image .image-placeholder {
    opacity: 1;
}

.featured-image .image-placeholder i {
    font-size: 5rem;
    margin-bottom: 15px;
    opacity: 0.4;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    z-index: 2;
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.featured-content .category {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
}

.featured-content .date,
.featured-content .read-time {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 18px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.featured-content h2:hover {
    color: var(--primary-color);
}

.featured-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.read-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header-left {
    margin-bottom: 50px;
}

.section-header-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-header-left p {
    color: var(--gray);
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.blog-card.hidden {
    display: none;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-image .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0;
}

.blog-card-image.no-image .image-placeholder {
    opacity: 1;
}

.blog-card-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.4;
}

.blog-card-image .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.blog-card-content {
    padding: 28px;
}

.blog-card-content .post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.85rem;
}

.blog-card-content .post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.45;
}

.blog-card-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--primary-color);
}

.blog-card-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 14px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Load More Button */
.load-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.load-more-btn .fa-spinner {
    display: none;
    animation: spin 1s linear infinite;
}

.load-more-btn.loading .fa-spinner {
    display: inline-block;
}

.load-more-btn.loading span {
    display: none;
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Blog Newsletter Section - Enhanced Design */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #4c1d95 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.nl-shape {
    position: absolute;
    border-radius: 50%;
}

.nl-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.nl-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: pulse 10s ease-in-out infinite reverse;
}

.nl-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: float 6s ease-in-out infinite;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.newsletter-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-content-left {
    color: #fff;
}

.newsletter-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
}

.newsletter-icon-box .icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    animation: ringPulse 2s ease-out infinite;
}

.newsletter-icon-box .icon-ring-2 {
    animation-delay: 1s;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.animate-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.newsletter-content-left h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.newsletter-content-left > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

/* Newsletter Form Enhanced */
.newsletter-form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-floating {
    position: relative;
}

.form-floating input {
    width: 100%;
    padding: 20px 20px 20px 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-floating input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.form-floating input::placeholder {
    color: transparent;
}

.form-floating label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-floating label i {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label {
    top: 0;
    left: 20px;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #1e3a8a, #4c1d95);
    padding: 4px 10px;
    border-radius: 5px;
    color: #fff;
}

.form-floating input:focus + label i,
.form-floating input:not(:placeholder-shown) + label i {
    display: none;
}

/* Subscribe Button with States */
.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.subscribe-btn .btn-text,
.subscribe-btn .btn-icon,
.subscribe-btn .btn-loading,
.subscribe-btn .btn-success {
    transition: all 0.3s ease;
}

.subscribe-btn .btn-icon {
    margin-left: 10px;
}

.subscribe-btn .btn-loading,
.subscribe-btn .btn-success {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.subscribe-btn.loading .btn-text,
.subscribe-btn.loading .btn-icon {
    opacity: 0;
}

.subscribe-btn.loading .btn-loading {
    opacity: 1;
}

.subscribe-btn.success {
    background: #22c55e;
}

.subscribe-btn.success .btn-text,
.subscribe-btn.success .btn-icon {
    opacity: 0;
}

.subscribe-btn.success .btn-success {
    opacity: 1;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.form-privacy i {
    margin-right: 6px;
    color: #22c55e;
}

/* Subscriber Count */
.subscriber-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subscriber-avatars {
    display: flex;
}

.subscriber-avatars .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-left: -10px;
}

.subscriber-avatars .avatar:first-child {
    margin-left: 0;
}

.subscriber-count > span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Popular Topics */
.popular-topics {
    padding: 70px 0;
    background: var(--light-bg);
}

.popular-topics h3 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--text-color);
}

.topics-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.topic-tag {
    padding: 12px 24px;
    background: var(--white);
    border-radius: 30px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    opacity: 0;
    transform: translateY(20px);
}

.topic-tag.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.topic-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: #fff;
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}

/* General Animation Classes */
.animate-in {
    animation: animateIn 0.6s ease forwards;
}

@keyframes animateIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation for Cards */
.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }
.blog-card:nth-child(7) { animation-delay: 0.7s; }
.blog-card:nth-child(8) { animation-delay: 0.8s; }
.blog-card:nth-child(9) { animation-delay: 0.9s; }

.topic-tag:nth-child(1) { transition-delay: 0.05s; }
.topic-tag:nth-child(2) { transition-delay: 0.1s; }
.topic-tag:nth-child(3) { transition-delay: 0.15s; }
.topic-tag:nth-child(4) { transition-delay: 0.2s; }
.topic-tag:nth-child(5) { transition-delay: 0.25s; }
.topic-tag:nth-child(6) { transition-delay: 0.3s; }
.topic-tag:nth-child(7) { transition-delay: 0.35s; }
.topic-tag:nth-child(8) { transition-delay: 0.4s; }
.topic-tag:nth-child(9) { transition-delay: 0.45s; }
.topic-tag:nth-child(10) { transition-delay: 0.5s; }
.topic-tag:nth-child(11) { transition-delay: 0.55s; }
.topic-tag:nth-child(12) { transition-delay: 0.6s; }

/* ===========================================
   BLOG POST PAGE STYLES
   =========================================== */

/* Blog Post Hero */
.blog-post-hero {
    padding: 180px 0 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3730a3 100%);
    position: relative;
    overflow: hidden;
}

.post-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.post-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-breadcrumb a:hover {
    color: #fff;
}

.post-breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

.post-breadcrumb span {
    color: var(--accent-color);
}

.post-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-post-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-meta-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.author-info > div {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #fff;
}

.post-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.post-stats {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Featured Image Section */
.post-featured-image {
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.featured-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-image-wrapper .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0;
}

.featured-image-wrapper.no-image .image-placeholder {
    opacity: 1;
}

.featured-image-wrapper .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Blog Post Content Layout */
.blog-post-content {
    padding: 60px 0 80px;
    background: var(--light-bg);
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Article */
.post-main {
    position: relative;
    display: flex;
    gap: 30px;
}

/* Share Sidebar */
.share-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: fit-content;
}

.share-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.copy { background: var(--gray); }

/* Article Content */
.article-content {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.article-content p.lead {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.article-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 30px;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 30px 0 15px;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin: 20px 0 30px 20px;
}

.article-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
}

.article-content li strong {
    color: var(--text-color);
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
    transition: all 0.3s ease;
}

.article-content a:hover {
    border-bottom-style: solid;
}

/* Content Highlight Box */
.content-highlight {
    background: linear-gradient(135deg, #e0f2fe 0%, #e0e7ff 100%);
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.content-highlight i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 3px;
}

.content-highlight p {
    margin: 0;
    font-size: 1rem;
}

/* Content Table */
.content-table {
    margin: 30px 0;
    overflow-x: auto;
}

.content-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-table th {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.content-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.content-table tr:last-child td {
    border-bottom: none;
}

.content-table tr:hover td {
    background: #f9fafb;
}

/* Code Block */
.code-block {
    margin: 30px 0;
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    background: #0f172a;
    padding: 12px 20px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
}

.code-block pre {
    padding: 20px;
    margin: 0;
    color: #e2e8f0;
    font-family: 'Consolas', monospace;
    font-size: 0.95rem;
    line-height: 1.7;
    overflow-x: auto;
}

/* Blockquote */
.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px 35px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 10px;
}

.article-content blockquote cite {
    color: var(--gray);
    font-style: normal;
    font-weight: 600;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.metric-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 15px;
}

.metric-box h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.metric-box p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.tags-label {
    color: var(--gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-tags a {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Share Mobile */
.share-mobile {
    display: none;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.share-mobile span {
    display: block;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 15px;
}

.share-mobile .share-buttons {
    display: flex;
    gap: 10px;
}

/* Post Sidebar */
.post-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Author Widget */
.author-widget {
    text-align: center;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin: 0 auto 15px;
}

.author-widget h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.author-widget p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.author-social a {
    width: 38px;
    height: 38px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* TOC Widget */
.toc-widget h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
}

.toc-list a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

/* Newsletter Widget */
.newsletter-widget h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.newsletter-widget p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.sidebar-newsletter {
    display: flex;
    gap: 10px;
}

.sidebar-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.sidebar-newsletter input:focus {
    border-color: var(--primary-color);
}

.sidebar-newsletter button {
    width: 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-newsletter button:hover {
    background: var(--secondary-color);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    color: #fff;
}

.cta-widget h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cta-widget .btn-block {
    width: 100%;
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-widget .btn-block:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Related Posts Section */
.related-posts-section {
    padding: 80px 0;
    background: var(--white);
}

.related-posts-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-color);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.related-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-image .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0;
}

.related-post-image.no-image .image-placeholder {
    opacity: 1;
}

.related-post-image .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.related-post-content {
    padding: 20px;
}

.related-post-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-post-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: var(--primary-color);
}

.related-post-content .read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.related-post-content .read-more:hover {
    gap: 10px;
}

/* Post Navigation */
.post-navigation {
    padding: 50px 0;
    background: var(--light-bg);
    border-top: 1px solid #e5e7eb;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-prev, .nav-next {
    display: block;
    padding: 25px 30px;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-prev:hover, .nav-next:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.nav-next .nav-label {
    justify-content: flex-end;
}

.nav-title {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav-prev:hover .nav-title,
.nav-next:hover .nav-title {
    color: var(--primary-color);
}

/* Blog Responsive Styles */
@media (max-width: 1024px) {
    .blog-hero h1 {
        font-size: 2.8rem;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .featured-content {
        padding: 40px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
    }
    
    .newsletter-content-left {
        text-align: center;
    }
    
    .newsletter-icon-box {
        margin: 0 auto 25px;
    }
    
    .newsletter-benefits {
        align-items: center;
    }
    
    .post-layout {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 140px 0 80px;
    }
    
    .blog-hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .blog-hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    /* Search Box Mobile */
    .blog-search-wrapper {
        padding: 0 10px;
    }
    
    .search-box {
        flex-direction: column;
        padding: 15px;
        border-radius: 20px;
        gap: 15px;
    }
    
    .search-icon {
        display: none;
    }
    
    .search-box input {
        padding: 12px 15px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        border-radius: 12px;
    }
    
    .search-suggestions {
        flex-wrap: wrap;
        padding: 0 10px;
    }
    
    .suggestion-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .search-results-preview {
        margin: 15px 10px 0;
        border-radius: 16px;
    }
    
    .search-result-item {
        padding: 15px 20px;
    }
    
    /* Category Tabs Mobile */
    .blog-categories {
        padding: 40px 0 30px;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 20px 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .category-tab {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Featured Post Mobile */
    .featured-post-section {
        padding: 40px 0 60px;
    }
    
    .featured-post {
        border-radius: 20px;
    }
    
    .featured-image {
        min-height: 250px;
    }
    
    .featured-badge {
        top: 15px;
        left: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .featured-content {
        padding: 30px 25px;
    }
    
    .featured-content .post-meta {
        gap: 10px;
    }
    
    .featured-content .category {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .featured-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .read-more-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* Blog Grid Mobile */
    .blog-grid-section {
        padding: 60px 0;
    }
    
    .section-header-left h2 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 22px;
    }
    
    /* Newsletter Mobile */
    .newsletter-section {
        padding: 70px 0;
    }
    
    .newsletter-wrapper {
        padding: 35px 25px;
        border-radius: 24px;
        margin: 0 15px;
    }
    
    .newsletter-icon-box {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .newsletter-content-left h3 {
        font-size: 1.7rem;
    }
    
    .newsletter-content-left > p {
        font-size: 0.95rem;
    }
    
    .newsletter-benefits {
        gap: 10px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .newsletter-form-wrapper {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .form-floating input {
        padding: 18px 18px 18px 45px;
    }
    
    .form-floating label {
        left: 45px;
        font-size: 0.95rem;
    }
    
    .subscribe-btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .subscriber-count {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Popular Topics Mobile */
    .popular-topics {
        padding: 50px 0;
    }
    
    .popular-topics h3 {
        font-size: 1.3rem;
    }
    
    .topics-cloud {
        padding: 0 15px;
    }
    
    .topic-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Blog Post Page Mobile */
    .blog-post-hero {
        padding: 140px 0 50px;
    }
    
    .blog-post-hero h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .post-meta-hero {
        flex-direction: column;
        gap: 15px;
    }
    
    .share-sidebar {
        display: none;
    }
    
    .share-mobile {
        display: block;
    }
    
    .post-main {
        flex-direction: column;
    }
    
    .article-content {
        padding: 30px 22px;
        border-radius: 16px;
    }
    
    .post-sidebar {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .related-posts-section {
        padding: 60px 0;
    }
    
    .related-posts-section h2 {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-post-image {
        height: 180px;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nav-prev, .nav-next {
        padding: 20px;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .nav-next .nav-label {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 130px 0 70px;
    }
    
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .category-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .featured-image {
        min-height: 200px;
    }
    
    .featured-content {
        padding: 25px 20px;
    }
    
    .featured-content h2 {
        font-size: 1.35rem;
    }
    
    .newsletter-wrapper {
        padding: 30px 20px;
    }
    
    .newsletter-content-left h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-form-wrapper {
        padding: 25px 20px;
    }
    
    .blog-post-hero h1 {
        font-size: 1.5rem;
    }
    
    .article-content {
        padding: 25px 18px;
    }
    
    .article-content h2 {
        font-size: 1.3rem;
    }
    
    .article-content h3 {
        font-size: 1.15rem;
    }
    
    .content-highlight {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-box {
        padding: 20px;
    }
}

/* ============================================
   BLOG POST PAGE ENHANCED STYLES
   ============================================ */

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #7209b5, #f72585);
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(67, 97, 238, 0.5);
}

/* Blog Post Hero Enhanced */
.blog-post-hero {
    position: relative;
    overflow: hidden;
}

.blog-post-hero .hero-shape-3 {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.blog-post-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.blog-post-hero .hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

.blog-post-hero .hero-particles span:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.blog-post-hero .hero-particles span:nth-child(2) { top: 20%; left: 15%; animation-delay: 1s; }
.blog-post-hero .hero-particles span:nth-child(3) { top: 30%; left: 85%; animation-delay: 2s; }
.blog-post-hero .hero-particles span:nth-child(4) { top: 50%; left: 90%; animation-delay: 3s; }
.blog-post-hero .hero-particles span:nth-child(5) { top: 70%; left: 10%; animation-delay: 4s; }
.blog-post-hero .hero-particles span:nth-child(6) { top: 80%; left: 80%; animation-delay: 5s; }
.blog-post-hero .hero-particles span:nth-child(7) { top: 15%; left: 70%; animation-delay: 1.5s; }
.blog-post-hero .hero-particles span:nth-child(8) { top: 60%; left: 25%; animation-delay: 2.5s; }
.blog-post-hero .hero-particles span:nth-child(9) { top: 85%; left: 50%; animation-delay: 3.5s; }
.blog-post-hero .hero-particles span:nth-child(10) { top: 40%; left: 60%; animation-delay: 4.5s; }

/* Hero Animation Classes */
.blog-post-hero .animate-hero {
    animation: fadeInUp 0.8s ease-out forwards;
}

.blog-post-hero .animate-badge {
    animation: bounceIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.blog-post-hero .animate-title {
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.blog-post-hero .animate-meta {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Newsletter Widget Enhanced (Sidebar) */
.newsletter-widget-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-widget-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.nl-widget-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.newsletter-widget-enhanced h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
}

.newsletter-widget-enhanced p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 20px;
}

.nl-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nl-input-group input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.nl-input-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.nl-input-group input::placeholder {
    color: #888;
}

.nl-submit-btn {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nl-submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nl-submit-btn i {
    transition: transform 0.3s ease;
}

.nl-submit-btn:hover i {
    transform: translateX(5px);
}

.nl-privacy {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 15px;
    opacity: 0.8;
}

.nl-privacy i {
    margin-right: 5px;
}

/* Blog Post Newsletter Section (Before Related Posts) */
.blog-post-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.blog-post-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(247, 37, 133, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.post-newsletter-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.nl-icon-animated {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4361ee, #f72585);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.nl-icon-animated::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(67, 97, 238, 0.3);
    animation: ringPulse 2s ease-out infinite;
}

.post-newsletter-wrapper h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.post-newsletter-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.nl-form-row {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.nl-form-row input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nl-form-row input:focus {
    outline: none;
    border-color: #4361ee;
    background: rgba(255, 255, 255, 0.1);
}

.nl-form-row input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.nl-btn {
    padding: 16px 30px;
    background: linear-gradient(135deg, #4361ee, #7209b5);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nl-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
}

.nl-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.nl-btn.loading .btn-text {
    display: none;
}

.nl-btn .btn-loading {
    display: none;
}

.nl-btn.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nl-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nl-success-message {
    display: none;
    color: #10b981;
    margin-top: 15px;
    font-size: 0.95rem;
}

.nl-success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

/* Section Header Center */
.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 181, 0.1));
    border: 1px solid rgba(67, 97, 238, 0.2);
    border-radius: 30px;
    color: #4361ee;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header-center h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.section-header-center p {
    color: #666;
    font-size: 1.1rem;
}

/* Related Posts Section Enhanced */
.related-posts-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.related-post-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.related-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.related-post-card .post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .post-image img {
    transform: scale(1.1);
}

.related-post-card .post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #4361ee, #7209b5);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-post-card .post-content {
    padding: 25px;
}

.related-post-card .post-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.related-post-card:hover .post-content h3 {
    color: #4361ee;
}

.related-post-card .post-content h3 a {
    color: inherit;
    text-decoration: none;
}

.related-post-card .post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #888;
    font-size: 0.85rem;
}

.related-post-card .post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-card .post-meta i {
    color: #4361ee;
}

/* Animation Delays for Related Posts */
.related-post-card[style*="animation-delay: 0.1s"] { transition-delay: 0.1s; }
.related-post-card[style*="animation-delay: 0.2s"] { transition-delay: 0.2s; }
.related-post-card[style*="animation-delay: 0.3s"] { transition-delay: 0.3s; }

/* Blog Post Page Responsive Styles */
@media (max-width: 1024px) {
    .blog-post-hero .hero-content {
        padding: 60px 30px;
    }
    
    .blog-post-hero .post-title {
        font-size: 2rem;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .post-newsletter-wrapper h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .reading-progress-bar {
        height: 3px;
    }
    
    .blog-post-hero .hero-content {
        padding: 50px 20px;
    }
    
    .blog-post-hero .post-title {
        font-size: 1.6rem;
    }
    
    .blog-post-hero .post-meta {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .blog-post-hero .hero-particles span {
        width: 4px;
        height: 4px;
    }
    
    .blog-post-newsletter {
        padding: 60px 20px;
    }
    
    .post-newsletter-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .nl-form-row {
        flex-direction: column;
    }
    
    .nl-btn {
        width: 100%;
        justify-content: center;
    }
    
    .related-posts-section {
        padding: 60px 20px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .related-post-card .post-image {
        height: 180px;
    }
    
    .section-header-center h2 {
        font-size: 1.6rem;
    }
    
    .newsletter-widget-enhanced {
        padding: 25px 20px;
    }
    
    .nl-widget-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-post-hero .post-title {
        font-size: 1.4rem;
    }
    
    .blog-post-hero .breadcrumb {
        font-size: 0.8rem;
    }
    
    .blog-post-hero .category-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    
    .nl-icon-animated {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .post-newsletter-wrapper h2 {
        font-size: 1.3rem;
    }
    
    .post-newsletter-wrapper p {
        font-size: 1rem;
    }
    
    .nl-form-row input,
    .nl-btn {
        padding: 14px 18px;
    }
    
    .related-post-card .post-content {
        padding: 20px;
    }
    
    .related-post-card .post-content h3 {
        font-size: 1.05rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

/* ============================================
   BLOG POST NEWSLETTER FORM ENHANCEMENTS
   ============================================ */

/* Newsletter Icon Ring Animation */
.nl-icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ringPulse 2s ease-out infinite;
}

.nl-icon-ring-2 {
    animation-delay: 1s;
}

/* Newsletter Form Input Wrapper */
.nl-input-wrapper {
    position: relative;
    flex: 1;
}

.nl-input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nl-input-wrapper input {
    width: 100%;
    padding: 16px 20px 16px 45px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nl-input-wrapper input:focus {
    outline: none;
    border-color: #4361ee;
    background: rgba(255, 255, 255, 0.1);
}

.nl-input-wrapper input:focus + i,
.nl-input-wrapper input:focus ~ i {
    color: #4361ee;
}

.nl-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Post Newsletter Form */
.post-newsletter-form {
    margin-top: 30px;
}

.post-newsletter-content {
    text-align: center;
    margin-bottom: 20px;
}

.post-newsletter-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.post-newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

/* Newsletter Note/Privacy */
.nl-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

.nl-note i {
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.5);
}

/* Button States */
.nl-btn.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.nl-btn .btn-success {
    display: none;
}

.nl-btn.success .btn-text,
.nl-btn.success .btn-loading {
    display: none;
}

.nl-btn.success .btn-success {
    display: inline-flex;
    align-items: center;
}

/* Newsletter Background Shapes */
.newsletter-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.nl-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.nl-shape-1 {
    width: 300px;
    height: 300px;
    background: #4361ee;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.nl-shape-2 {
    width: 200px;
    height: 200px;
    background: #f72585;
    bottom: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

/* Related Post Image Styles */
.related-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-image .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #4361ee, #7209b5);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-post-image .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f5, #e5e5ea);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-post-image.no-image .image-placeholder {
    opacity: 1;
}

.related-post-image.no-image img {
    display: none;
}

/* Related Post Content */
.related-post-content {
    padding: 25px;
}

.related-post-content h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.related-post-content h4 a {
    color: inherit;
    text-decoration: none;
}

.related-post-card:hover .related-post-content h4 {
    color: #4361ee;
}

.related-post-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4361ee;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-post-content .read-more:hover {
    gap: 12px;
}

.related-post-content .read-more i {
    transition: transform 0.3s ease;
}

.related-post-content .read-more:hover i {
    transform: translateX(4px);
}

/* Animation Classes for Widgets */
.sidebar-widget {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.sidebar-widget.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive additions for newsletter form */
@media (max-width: 768px) {
    .nl-input-wrapper input {
        padding: 14px 18px 14px 40px;
    }
    
    .post-newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .nl-shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .nl-shape-2 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .nl-input-wrapper i {
        left: 14px;
        font-size: 0.85rem;
    }
    
    .nl-input-wrapper input {
        padding: 12px 16px 12px 38px;
        font-size: 0.95rem;
    }
    
    .post-newsletter-content h3 {
        font-size: 1.3rem;
    }
    
    .related-post-image {
        height: 160px;
    }
    
    .related-post-content {
        padding: 20px;
    }
    
    .related-post-content h4 {
        font-size: 1rem;
    }
}
