/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #0A1C3D;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00B3B3, #00D4D4);
    z-index: 1002;
    transition: width 0.3s ease;
}

/* Countdown bar styles */
.countdown-bar {
    background-color: #0A1C3D;
    color: #FFFFFF;
    text-align: center;
    padding: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    backdrop-filter: blur(10px);
    background: rgba(10, 28, 61, 0.95);
}

#countdown {
    font-weight: 800;
    color: #00B3B3;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 179, 179, 0.4);
}

/* Navbar styles */
.navbar {
    background: rgba(10, 28, 61, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #3C3C3C;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 28, 61, 0.98);
    backdrop-filter: blur(15px);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #00B3B3;
    transform: scale(1.05);
}

.subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00B3B3;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #00B3B3;
}

.menu-button {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.menu-button:hover {
    color: #00B3B3;
    transform: scale(1.1);
}

/* Hero section styles */
.hero {
    background: linear-gradient(135deg, #D1E7F0 0%, #E8F4F8 30%, #FFFFFF 70%, #F0F6F8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 160px;
    position: relative;
    overflow: hidden;
}

/* Animated Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 179, 179, 0.3);
    border-radius: 50%;
    animation: float-particle 6s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 9s; }
.particle:nth-child(4) { left: 60%; animation-delay: 1s; animation-duration: 6s; }
.particle:nth-child(5) { left: 80%; animation-delay: 3s; animation-duration: 8s; }
.particle:nth-child(6) { left: 90%; animation-delay: 5s; animation-duration: 7s; }

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.social-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.social-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.06;
    color: #0A1C3D;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.1s ease;
}

.social-icon.instagram {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.social-icon.twitter {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.social-icon.facebook {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
}

.social-icon.youtube {
    top: 70%;
    right: 20%;
    animation-delay: 3s;
}

.social-icon.tiktok {
    top: 35%;
    left: 5%;
    animation-delay: 4s;
}

.social-icon.linkedin {
    top: 45%;
    right: 10%;
    animation-delay: 5s;
}

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

.hero-content {
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #4A4A4A;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.3);
}

.cta-button.secondary {
    background-color: #FFFFFF;
    color: #0A1C3D;
    border: 2px solid #0A1C3D;
}

.cta-button.secondary:hover {
    background-color: #0A1C3D;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(10, 28, 61, 0.3);
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(45deg, #00B3B3, #00D4D4, #00B3B3);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 1;
    animation: glow-rotate 2s linear infinite;
}

@keyframes glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

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

/* About section styles */
.about {
    background-color: #FFFFFF;
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
}

.about h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.services-link {
    color: #00B3B3;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.services-link:hover {
    color: #0A1C3D;
    border-bottom-color: #00B3B3;
    transform: translateX(5px);
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.point[data-hover="true"]:hover {
    background: rgba(0, 179, 179, 0.05);
    transform: translateX(10px);
}

.point-icon {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.point:hover .point-icon {
    transform: scale(1.1) rotate(5deg);
}

.point-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0A1C3D;
    margin-bottom: 0.5rem;
}

.point-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.growth-chart {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chart-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 1.5rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
    height: 200px;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.bar {
    width: 100%;
    max-width: 2.5rem;
    background: linear-gradient(to top, #00B3B3 0%, #00B3B3 40%, #4CAF50 60%, #66BB6A 100%);
    border-radius: 4px 4px 0 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 179, 179, 0.2);
}

.bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.bar:hover::before {
    transform: translateX(100%);
}

.bar:hover {
    transform: scaleY(1.05) scaleX(1.1);
    box-shadow: 0 4px 16px rgba(0, 179, 179, 0.3);
}

.animated-bar {
    height: 2px;
    transition: height 1.2s ease-in-out;
}

.bar-label {
    margin-top: 0.5rem;
    text-align: center;
}

.month {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0A1C3D;
    margin-bottom: 0.2rem;
}

.followers {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00B3B3;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 28, 61, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0A1C3D;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.automated {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
}

.legend-color.organic {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

/* Pricing section styles */
.pricing {
    background: linear-gradient(to bottom, #F8FAFB 0%, #FFFFFF 100%);
    padding: 5rem 2rem;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-urgency {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00B3B3;
}

.shimmer {
    background: linear-gradient(90deg, #00B3B3 0%, #00D4D4 50%, #00B3B3 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
}

.tilt-card {
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid #00B3B3;
    transform: scale(1.05);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FFFE 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
}

.shimmer-badge {
    animation: pulse 2s infinite;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.original-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-price {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00B3B3;
    display: inline-block;
}

.main-price {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A1C3D;
}

.counter {
    display: inline-block;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #4A4A4A;
    line-height: 1.4;
}

.card-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.card-features ul {
    list-style: none;
    padding: 0;
}

.card-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4A4A4A;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.card-features li:hover {
    color: #0A1C3D;
    transform: translateX(5px);
}

.card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #00B3B3;
    border-radius: 50%;
    transform: translateY(-50%);
}

.pricing-button {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-button.primary {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
}

.pricing-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.3);
}

.pricing-button.secondary {
    background-color: #FFFFFF;
    color: #0A1C3D;
    border: 2px solid #0A1C3D;
}

.pricing-button.secondary:hover {
    background-color: #0A1C3D;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(10, 28, 61, 0.3);
}

/* Content-Only Option Styles */
.content-only-option {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 179, 179, 0.2);
    position: relative;
}

.divider {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.divider span {
    background: #FFFFFF;
    padding: 0 1rem;
    color: #0A1C3D;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 179, 179, 0.3), transparent);
    z-index: 1;
}

.content-only-price {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.content-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1C3D;
    font-family: 'Inter', sans-serif;
}

.savings-badge {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.content-only-features {
    margin-bottom: 1.5rem;
}

.content-only-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-only-features li {
    position: relative;
    margin-bottom: 0.75rem;
    color: #0A1C3D;
    font-size: 0.9rem;
    opacity: 0.9;
    padding-left: 1.5rem;
}

.content-only-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #00B3B3;
    border-radius: 50%;
    transform: translateY(-50%);
}

.pricing-button.content-only {
    background: rgba(0, 179, 179, 0.1);
    color: #00B3B3;
    border: 2px solid #00B3B3;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

.pricing-button.content-only:hover {
    background: #00B3B3;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 179, 179, 0.3);
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button Loading States */
.cta-button.loading,
.pricing-button.loading {
    pointer-events: none;
    position: relative;
}

.cta-button.loading .button-text,
.pricing-button.loading .button-text {
    opacity: 0;
}

.button-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
}

.cta-button.loading .button-loader,
.pricing-button.loading .button-loader {
    opacity: 1;
}

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

/* Keyboard Navigation Support */
.keyboard-navigation *:focus {
    outline: 2px solid #00B3B3;
    outline-offset: 2px;
}

.keyboard-navigation .cta-button:focus,
.keyboard-navigation .pricing-button:focus,
.keyboard-navigation .floating-btn:focus {
    box-shadow: 0 0 0 3px rgba(0, 179, 179, 0.3);
}

.keyboard-navigation .nav-link:focus {
    background: rgba(0, 179, 179, 0.1);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
}

/* Enhanced Focus States */
button:focus-visible,
a:focus-visible {
    outline: 2px solid #00B3B3;
    outline-offset: 2px;
}

/* Scroll Indicator Enhancement */
.scroll-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: progress-shine 1.5s ease-in-out infinite;
}

@keyframes progress-shine {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Enhanced Hover States for Interactive Elements */
.point[data-hover="true"] {
    cursor: pointer;
}

.social-icon:hover {
    opacity: 0.12 !important;
    transform: scale(1.1);
}

/* Improved Mobile Touch Targets */
@media (max-width: 768px) {
    .countdown-bar {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .navbar {
        top: 35px;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 28, 61, 0.98);
        backdrop-filter: blur(15px);
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .subtitle {
        font-size: 0.6rem;
    }

    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .hero {
        padding: 1rem;
        padding-top: 140px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .social-icon {
        font-size: 2rem;
        opacity: 0.04;
    }

    .about {
        padding: 3rem 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about h3 {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .point {
        gap: 1rem;
        padding: 0.5rem;
    }

    .point-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .point-content h4 {
        font-size: 1.1rem;
    }

    .growth-chart {
        padding: 1rem;
    }
    
    .chart-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .chart-bars {
        height: 150px;
        gap: 0.3rem;
    }

    .bar {
        max-width: 1.8rem;
    }
    
    .month {
        font-size: 0.7rem;
    }
    
    .followers {
        font-size: 0.8rem;
    }
    
    .chart-legend {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }

    .pricing {
        padding: 3rem 1rem;
    }

    .pricing h3 {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .tilt-card:hover {
        transform: translateY(-4px);
    }

    .promo-price, .main-price {
        font-size: 2rem;
    }

    .cta-button,
    .pricing-button,
    .floating-btn {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        touch-action: manipulation;
    }
    
    /* Content-Only Option Mobile Styles */
    .content-only-option {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .content-price {
        font-size: 1.25rem;
    }
    
    .savings-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .content-only-features li {
        font-size: 0.85rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particle {
        display: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cta-button.primary {
        background: #000000;
        border: 2px solid #FFFFFF;
    }
    
    .pricing-card {
        border: 2px solid #000000;
    }
    
    .scroll-progress {
        background: #000000;
    }
}

/* Popular Packages Hero Section */
.popular-packages-hero {
    background: linear-gradient(135deg, #0A1C3D 0%, #1A2B4D 100%);
    color: #FFFFFF;
    padding: 4rem 2rem;
    margin: 2rem 0;
    border-radius: 16px;
}

.popular-packages-hero .section-header h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.popular-packages-hero .section-header p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.popular-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.popular-card.featured {
    background: rgba(0, 179, 179, 0.15);
    border: 2px solid #00B3B3;
    transform: scale(1.05);
}

.popular-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 179, 179, 0.3);
}

.popular-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.4);
}

.popular-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
}

.popular-quantity {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #00B3B3;
    text-align: center;
    margin-bottom: 0.5rem;
}

.popular-price {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0.5rem;
}

.popular-discount {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #00D4D4;
    text-align: center;
    margin-bottom: 1.5rem;
}

.popular-features {
    margin-bottom: 2rem;
}

.popular-features .feature {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.popular-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.popular-btn.primary {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
}

.popular-btn.featured {
    background: linear-gradient(135deg, #FFFFFF, #F0F0F0);
    color: #0A1C3D;
}

.popular-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.4);
}

.popular-btn.featured:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Print Styles */
@media print {
    .countdown-bar,
    .navbar,
    .floating-cta,
    .particles,
    .social-icons,
    .popular-packages-hero {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .pricing-card {
        break-inside: avoid;
    }
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.3"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    pointer-events: none;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-us-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-us h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #0A1C3D;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-us-intro {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.advantage-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(10, 28, 61, 0.08);
    border: 1px solid rgba(10, 28, 61, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00B3B3, #0A1C3D);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 28, 61, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B3B3, #0A1C3D);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

.advantage-icon svg {
    color: white;
    z-index: 1;
    position: relative;
}

.advantage-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #0A1C3D;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.advantage-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.detail-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00B3B3;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.why-us-footer {
    margin-top: 3rem;
}

.competitive-comparison {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(10, 28, 61, 0.1);
    border: 1px solid rgba(10, 28, 61, 0.08);
}

.competitive-comparison h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #0A1C3D;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-column h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
}

.comparison-column:first-child h5 {
    background: #fee2e2;
    color: #dc2626;
}

.comparison-column.featured h5 {
    background: linear-gradient(135deg, #00B3B3, #0A1C3D);
    color: white;
    position: relative;
    overflow: hidden;
}

.comparison-column.featured h5::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

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

.comparison-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid #f1f5f9;
}

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

.comparison-list.negative li {
    color: #64748b;
}

.comparison-list.positive li {
    color: #0f172a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .why-us {
        padding: 3rem 1rem;
    }

    .why-us h3 {
        font-size: 2rem;
    }

    .why-us-intro {
        font-size: 1rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
    }

    .advantage-content h4 {
        font-size: 1.2rem;
    }

    .competitive-comparison {
        padding: 2rem 1.5rem;
    }

    .competitive-comparison h4 {
        font-size: 1.4rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-column h5 {
        font-size: 1.1rem;
    }

    .comparison-list li {
        font-size: 0.9rem;
    }
}

/* Contact section styles */
.contact {
    background: linear-gradient(135deg, #0A1C3D 0%, #1A2B4D 100%);
    color: #FFFFFF;
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.2);
}

.contact-icon {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0A1C3D;
    margin-bottom: 0.25rem;
}

.contact-details p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #00B3B3;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.response-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0A1C3D;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00B3B3;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 179, 179, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #0A1C3D;
    color: #FFFFFF;
}

.contact-submit-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.4);
}

.contact-footer {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 179, 179, 0.1);
    border: 1px solid rgba(0, 179, 179, 0.3);
    border-radius: 12px;
    max-width: 500px;
}

.badge-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #00B3B3;
}

.badge-text span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Mobile styles for contact section */
@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }

    .contact h3 {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .contact-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
        color: #0A1C3D;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .badge-icon {
        font-size: 1.5rem;
    }
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 28, 61, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 280px;
    max-width: 400px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-section.special {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

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

.dropdown-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00B3B3;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



.dropdown-section.special h4::before {
    background: rgba(255, 215, 0, 0.3);
}

.dropdown-link {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-left: 1rem;
}

.dropdown-link:hover {
    color: #FFFFFF;
    background: rgba(0, 179, 179, 0.1);
    transform: translateX(3px);
}

.dropdown-link.premium {
    color: #FFD700;
    font-weight: 600;
}

.dropdown-link.premium:hover {
    color: #FFA500;
    background: rgba(255, 215, 0, 0.1);
}

/* Mobile styles for dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 250px;
        max-width: 280px;
        left: -50px;
        padding: 0.75rem;
    }

    .dropdown-section h4 {
        font-size: 0.75rem;
    }

    .dropdown-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
        margin-left: 0.75rem;
    }
}

/* Adjust navbar for better dropdown positioning */
@media (max-width: 1024px) {
    .dropdown-menu {
        left: -80px;
    }
}

@media (max-width: 480px) {
    .dropdown-menu {
        left: -120px;
        min-width: 220px;
    }
}

/* Services Section Styles */
.services {
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8FAFB 100%);
    padding: 8rem 2rem 5rem;
    margin-top: 40px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.platform-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #E5E5E5;
    border-radius: 50px;
    background: #FFFFFF;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-tab:hover {
    border-color: #00B3B3;
    color: #00B3B3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.2);
}

.platform-tab.active {
    border-color: #00B3B3;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
}

.platform-tab.premium-tab {
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #FFFFFF;
}

.platform-tab.premium-tab:hover,
.platform-tab.premium-tab.active {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.platform-icon {
    font-size: 1.2rem;
}

.platform-content {
    position: relative;
    min-height: 500px;
}

.platform-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.platform-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.services-grid.single-service {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00B3B3, #00D4D4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 179, 179, 0.15);
    border-color: #00B3B3;
}

.service-card.premium-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
    border: 2px solid #FFD700;
    position: relative;
}

.service-card.premium-card::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.premium-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 0 16px 0 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-icon.premium-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
}

.service-header h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.4;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4A4A4A;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-features li {
    color: #2D2D2D;
    font-weight: 500;
}

.service-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 179, 179, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 179, 179, 0.1);
}

.premium-pricing {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.price-range {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00B3B3;
    margin-bottom: 0.25rem;
}

.price-range.premium-price {
    color: #FF8C00;
    font-size: 1.5rem;
}

.quantity-range {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #4A4A4A;
}

.service-btn {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 179, 179, 0.3);
}

.service-btn.premium-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #FFFFFF;
}

.service-btn.premium-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile styles for services */
@media (max-width: 768px) {
    .services {
        padding: 6rem 1rem 3rem;
    }

    .services h3 {
        font-size: 2rem;
    }

    .services-header h1 {
        font-size: 2.2rem;
    }

    .platform-tabs {
        gap: 0.5rem;
    }

    .platform-tab {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-header h4 {
        font-size: 1.3rem;
    }

    .price-range {
        font-size: 1.1rem;
    }

    .price-range.premium-price {
        font-size: 1.3rem;
    }

    /* Mobile navigation dropdown override */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 28, 61, 0.98);
        backdrop-filter: blur(15px);
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    /* Hide services dropdown on mobile */
    .nav-dropdown .dropdown-menu {
        display: none;
    }

    /* Show services as regular nav link on mobile */
    .nav-dropdown .dropdown-trigger {
        pointer-events: none;
    }

    .nav-dropdown .dropdown-trigger::after {
        content: none;
    }
}

/* Services Page Styles */
.services-page {
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8FAFB 100%);
    padding: 8rem 2rem 5rem;
    min-height: 100vh;
}

.services-page .services-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #E5E5E5;
    border-radius: 25px;
    background: #FFFFFF;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tab:hover {
    border-color: #00B3B3;
    color: #00B3B3;
    transform: translateY(-2px);
}

.service-tab.active {
    border-color: #00B3B3;
    background: #00B3B3;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
}

.service-icon {
    font-size: 1.1rem;
}

.service-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.service-hero h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 1rem;
}

.service-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #4A4A4A;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.service-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 179, 179, 0.15);
}

.package-card.featured {
    border: 2px solid #00B3B3;
    transform: scale(1.05);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FFFE 100%);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 1rem;
    text-align: center;
}

.package-price {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00B3B3;
    text-align: center;
    margin-bottom: 0.5rem;
}

.package-quantity {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4A4A4A;
    text-align: center;
    margin-bottom: 2rem;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4A4A4A;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 179, 179, 0.3);
}

.package-btn.primary {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    box-shadow: 0 4px 15px rgba(0, 179, 179, 0.2);
}

.package-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.4);
}

/* HookEngine Page Styles */
.hookengine-hero {
    background: linear-gradient(135deg, #0A1C3D 0%, #1A2B4D 50%, #2A3B5D 100%);
    color: #FFFFFF;
    padding: 8rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hookengine-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hookengine-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.premium-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.hookengine-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF, #00D4D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hookengine-hero h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00B3B3;
    display: block;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.premium-cta-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.premium-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.hookengine-features {
    background: #FFFFFF;
    padding: 5rem 2rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1rem;
}

.features-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #4A4A4A;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 1rem;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.hookengine-pricing {
    background: linear-gradient(to bottom, #F8FAFB 0%, #FFFFFF 100%);
    padding: 5rem 2rem;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-hero h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #4A4A4A;
}

.premium-pricing-cards {
    display: flex;
    justify-content: center;
}

.premium-pricing-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.premium-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 1rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF8C00;
}

.amount {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FF8C00;
    margin: 0 0.25rem;
}

.period {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A4A4A;
}

.pricing-note {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4A4A4A;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-group {
    margin-bottom: 2rem;
}

.feature-group h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FFD700;
}

.feature-group ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-group li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2D2D2D;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-cta {
    text-align: center;
}

.premium-order-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #FFFFFF;
    width: 100%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.premium-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.guarantee-text span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #4A4A4A;
}

.hookengine-testimonials {
    background: #FFFFFF;
    padding: 5rem 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #4A4A4A;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.15);
}

.testimonial-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2D2D2D;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.author-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #4A4A4A;
}

.author-stats span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00B3B3;
    background: rgba(0, 179, 179, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .services-page {
        padding: 6rem 1rem 3rem;
    }

    .services-page .services-header h1 {
        font-size: 2rem;
    }

    .service-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .service-tab {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .service-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-4px);
    }

    .hookengine-hero {
        padding: 6rem 1rem 3rem;
    }

    .hookengine-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-pricing-card {
        padding: 2rem 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* New Services Page Styles */
.service-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.service-nav-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 25px;
    background: #FFFFFF;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.service-nav-tab:hover {
    border-color: #00B3B3;
    color: #00B3B3;
    transform: translateY(-2px);
}

.service-nav-tab.active {
    border-color: #00B3B3;
    background: #00B3B3;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
}

.tab-icon {
    font-size: 1rem;
}

.service-content {
    position: relative;
    min-height: 600px;
}

.service-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-section.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 1rem;
}

.service-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #4A4A4A;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Preset Packages */
.preset-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.preset-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #F0F0F0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.preset-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 179, 179, 0.15);
    border-color: #00B3B3;
}

.preset-card.featured {
    border-color: #00B3B3;
    transform: scale(1.05);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FFFE 100%);
}

.preset-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.preset-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
}

.preset-quantity {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.preset-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00B3B3;
    margin-bottom: 0.5rem;
}

.preset-discount {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

.preset-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.preset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 179, 179, 0.3);
}

/* Custom Order Section */
.custom-order {
    background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
}

.custom-order h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 2rem;
}

.slider-container {
    margin-bottom: 2rem;
}

.quantity-display {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00B3B3;
    margin-bottom: 1.5rem;
}

.quantity-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E5E5E5;
    outline: none;
    margin-bottom: 1rem;
    -webkit-appearance: none;
    appearance: none;
}

.quantity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
    transition: all 0.3s ease;
}

.quantity-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(0, 179, 179, 0.4);
}

.quantity-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
    transition: all 0.3s ease;
}

.quantity-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(0, 179, 179, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #4A4A4A;
    font-weight: 500;
}

.price-display {
    margin-bottom: 2rem;
}

.price-amount {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0A1C3D;
    display: block;
    margin-bottom: 0.5rem;
}

.price-per {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4A4A4A;
}

.custom-order-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 179, 179, 0.3);
    position: relative;
    overflow: hidden;
}

.custom-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 179, 179, 0.4);
}

/* Button Loading States */
.preset-btn.loading,
.custom-order-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-nav-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .service-nav-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .service-header h2 {
        font-size: 2rem;
    }

    .preset-packages {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .preset-card.featured {
        transform: none;
    }

    .preset-card.featured:hover {
        transform: translateY(-4px);
    }

    .preset-quantity {
        font-size: 1.8rem;
    }

    .preset-price {
        font-size: 1.5rem;
    }

    .custom-order {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .custom-order h3 {
        font-size: 1.5rem;
    }

    .quantity-display {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .custom-order-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-nav-tab {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .tab-text {
        display: none;
    }

    .service-header h2 {
        font-size: 1.8rem;
    }

    .service-header p {
        font-size: 1rem;
    }

    .preset-quantity {
        font-size: 1.5rem;
    }

    .preset-price {
        font-size: 1.3rem;
    }

    .quantity-display {
        font-size: 1.8rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }
}

/* Single Service Page Styles - Enhanced */
.single-service-page {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 50%, #FFFFFF 100%);
    padding: 7rem 1.5rem 4rem;
    min-height: 100vh;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Breadcrumb */
.service-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(0, 179, 179, 0.1);
}

.service-breadcrumb a {
    color: #00B3B3;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-breadcrumb a:hover {
    color: #00D4D4;
    text-shadow: 0 0 8px rgba(0, 179, 179, 0.3);
}

.breadcrumb-separator {
    margin: 0 0.75rem;
    color: #D1D5DB;
    font-weight: 300;
}

/* Enhanced Service Hero */
.service-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-container {
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon-large {
    font-size: 4.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 179, 179, 0.1), rgba(0, 212, 212, 0.1));
    border-radius: 50%;
    border: 3px solid rgba(0, 179, 179, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00B3B3, #00D4D4, #00B3B3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.service-icon-large:hover::before {
    opacity: 0.3;
}

.service-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Enhanced Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 179, 179, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(3px);
    color: #0F172A;
}

.feature-icon {
    color: #00B3B3;
    font-weight: 700;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 179, 179, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #64748B;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Preset Packages */
.preset-packages {
    margin-bottom: 5rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.preset-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #F1F5F9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.preset-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.preset-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 179, 179, 0.15);
    border-color: #00B3B3;
}

.preset-card.featured {
    border-color: #00B3B3;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FFFE 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 179, 179, 0.2);
}

.preset-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 179, 179, 0.25);
}

.preset-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
    z-index: 2;
}

.card-content {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preset-quantity {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.preset-type {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #64748B;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.preset-price {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00B3B3;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.preset-discount {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.preset-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 179, 179, 0.2);
}

.preset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.3);
}

.preset-btn.loading {
    pointer-events: none;
}

.preset-btn .btn-text {
    transition: opacity 0.3s ease;
}

.preset-btn.loading .btn-text {
    opacity: 0;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preset-btn.loading .btn-loader {
    opacity: 1;
}

/* Enhanced Custom Order */
.custom-order {
    margin-bottom: 5rem;
}

.custom-order-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 179, 179, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.custom-order-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.custom-order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00B3B3, #00D4D4);
    opacity: 0.6;
}

.slider-section {
    margin-bottom: 2.5rem;
}

.quantity-display {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #00B3B3;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1;
}

.quantity-display #quantity-type {
    font-size: 1.2rem;
    color: #64748B;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

.slider-container {
    position: relative;
    margin-bottom: 1rem;
}

.quantity-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E2E8F0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 2;
}

.quantity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.4);
    transition: all 0.3s ease;
    border: 3px solid #FFFFFF;
}

.quantity-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 179, 179, 0.5);
}

.quantity-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    cursor: pointer;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.4);
    transition: all 0.3s ease;
}

.quantity-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 179, 179, 0.5);
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(90deg, #00B3B3, #00D4D4);
    border-radius: 4px;
    width: 0%;
    transition: width 0.2s ease;
    z-index: 1;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 500;
    margin-top: 0.75rem;
}

.pricing-section {
    text-align: center;
}

.price-display {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 179, 179, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 179, 179, 0.1);
}

.total-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F172A;
    display: block;
    line-height: 1;
}

.price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

.unit-price {
    margin-top: 0.75rem;
}

.price-per {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #00B3B3;
    font-weight: 500;
}

.custom-order-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 179, 179, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.custom-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 179, 179, 0.4);
}

.custom-order-btn.loading {
    pointer-events: none;
}

.custom-order-btn .btn-text {
    transition: opacity 0.3s ease;
}

.custom-order-btn.loading .btn-text {
    opacity: 0;
}

.custom-order-btn.loading .btn-loader {
    opacity: 1;
}

/* Enhanced Service Details */
.service-details {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: rgba(248, 250, 252, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(0, 179, 179, 0.1);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #F1F5F9;
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.detail-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 179, 179, 0.1);
    border-color: rgba(0, 179, 179, 0.2);
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.detail-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.detail-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    font-weight: 400;
}

/* Order Confirmation Modal */
.order-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.order-confirmation.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.confirmation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.confirmation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.order-confirmation h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.order-confirmation p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #64748B;
    margin: 0;
}

.order-details {
    background: rgba(0, 179, 179, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.order-details strong {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F172A;
}

.order-details span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #00B3B3;
    font-size: 1.1rem;
}

/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Enhanced Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .single-service-page {
        padding: 6rem 1rem 3rem;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-hero p {
        font-size: 1.1rem;
    }

    .service-icon-large {
        font-size: 3.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .preset-card.featured {
        transform: none;
    }

    .preset-card.featured:hover {
        transform: translateY(-4px);
    }

    .preset-quantity {
        font-size: 2rem;
    }

    .preset-price {
        font-size: 1.8rem;
    }

    .custom-order-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .quantity-display {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .custom-order-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-card {
        padding: 1.5rem;
    }

    .service-details {
        padding: 3rem 1rem;
    }
    
    .popular-packages-hero {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .popular-packages-hero .section-header h2 {
        font-size: 2rem;
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .popular-card.featured {
        transform: none;
    }
    
    .popular-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .popular-quantity {
        font-size: 1.8rem;
    }
    
    .popular-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-icon-large {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .preset-quantity {
        font-size: 1.8rem;
    }

    .preset-price {
        font-size: 1.5rem;
    }

    .quantity-display {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .custom-order-card {
        padding: 1.5rem 1rem;
    }

    .order-confirmation {
        padding: 1.5rem;
        max-width: 320px;
    }
}

/* Contact Page Styles */
.contact-page {
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8FAFB 100%);
    padding: 8rem 2rem 5rem;
    margin-top: 40px;
    min-height: 100vh;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-page-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0A1C3D;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-page-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #4A4A4A;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 179, 179, 0.15);
    border-color: #00B3B3;
}

.method-icon {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.method-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0A1C3D;
    margin-bottom: 0.5rem;
}

.method-details {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00B3B3;
    margin-bottom: 0.5rem;
}

.response-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.contact-form-section {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #F0F0F0;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 1rem;
}

.form-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-page-submit-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.contact-page-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.3);
}

.contact-guarantee {
    background: linear-gradient(135deg, rgba(0, 179, 179, 0.05), rgba(0, 212, 212, 0.05));
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 179, 179, 0.1);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 6rem 1rem 3rem;
    }

    .contact-page-header h1 {
        font-size: 2.2rem;
    }

    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .contact-method-card {
        padding: 1.5rem;
    }
} 

/* Testimonials Section Styles */
.testimonials-section {
    padding: 3rem 0;
    background: #f8fafc;
    margin: 2rem 0;
    border-radius: 15px;
}

.testimonials-section h4 {
    text-align: center;
    color: #0A1C3D;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 179, 179, 0.15);
    border-color: #00B3B3;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h5 {
    color: #0A1C3D;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.author-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Hooks Explanation Section Styles */
.hooks-explanation {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.hooks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hooks-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hooks-header h3 {
    color: #0A1C3D;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hooks-intro {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hooks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hooks-examples h4,
.hooks-process h4 {
    color: #0A1C3D;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hooks-list {
    space-y: 1.5rem;
}

.hook-example {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.hook-example:hover {
    border-color: #00B3B3;
    box-shadow: 0 4px 15px rgba(0, 179, 179, 0.1);
}

.hook-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.hook-text strong {
    display: block;
    color: #0A1C3D;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hook-text span {
    color: #6b7280;
    font-size: 0.875rem;
}

.process-steps {
    space-y: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number {
    background: linear-gradient(135deg, #00B3B3, #00D4D4);
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 40px;
}

.step-content h5 {
    color: #0A1C3D;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Updated Pricing Styles */
.trial-price {
    display: block;
    color: #00B3B3;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-context {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 0.5rem auto;
}

/* Mobile Responsive Styles for New Sections */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .hooks-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hooks-header h3 {
        font-size: 2rem;
    }
    
    .hook-example {
        padding: 1rem;
    }
    
    .process-step {
        margin-bottom: 1.5rem;
    }
    
    .trial-price {
        font-size: 1rem;
    }
    
    .pricing-context {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hooks-header h3 {
        font-size: 1.7rem;
    }
    
    .hooks-intro {
        font-size: 1rem;
    }
    
    .testimonials-section {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .testimonials-section h4 {
        font-size: 1.5rem;
    }
    
    .hook-example {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Legal Pages Styling */
.legal-page {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.legal-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.legal-content .section {
    margin-bottom: 2.5rem;
}

.legal-content .section:last-child {
    margin-bottom: 0;
}

.legal-content h2 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #4a5568;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content ul li {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content ol li {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-details {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    list-style: none;
    padding-left: 2rem;
}

.contact-details li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-details strong {
    color: #2d3748;
}

/* Mobile responsiveness for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
    }
}

/* Footer Styling */
.site-footer {
    background: #0A1C3D;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #00B3B3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00B3B3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

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

/* Mobile footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .site-footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
}