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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: none;
}

/* Navbar when scrolled */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.navbar.scrolled::before {
    opacity: 1;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* Nav links when scrolled */
.navbar.scrolled .nav-link {
    color: #333;
}

.nav-link:hover {
    color: #2bd4b8;
    background: rgba(43, 212, 184, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-link:hover {
    color: #2bd4b8;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #2bd4b8, #00a693);
    transition: width 0.3s ease;
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* Dropdown toggle when scrolled */
.navbar.scrolled .dropdown-toggle {
    color: #333;
}

.dropdown-toggle:hover {
    color: #2bd4b8;
    background: rgba(43, 212, 184, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .dropdown-toggle:hover {
    color: #2bd4b8;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 1000;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown.open .dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.dropdown-menu li {
    list-style: none;
}

.nav-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(43, 212, 184, 0.1);
    color: #2bd4b8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, #2bd4b8, #00a693);
    color: white;
    box-shadow: 0 4px 20px rgba(43, 212, 184, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(43, 212, 184, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #333;
    border: 2px solid rgba(43, 212, 184, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(43, 212, 184, 0.1);
    border-color: #2bd4b8;
    color: #2bd4b8;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(43, 212, 184, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

.btn-large:hover::after {
    left: 100%;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(43, 212, 184, 0.6);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(43, 212, 184, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 149, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(43, 212, 184, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 255, 149, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    }
    33% {
        background: 
            radial-gradient(circle at 60% 30%, rgba(43, 212, 184, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 30% 70%, rgba(0, 255, 149, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 60%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    }
    66% {
        background: 
            radial-gradient(circle at 80% 60%, rgba(43, 212, 184, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(0, 255, 149, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(43, 212, 184, 0.6), rgba(0, 255, 149, 0.4));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(43, 212, 184, 0.4);
    filter: blur(0.5px);
}

.floating-element::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

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

.floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 75%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 90px;
    height: 90px;
    top: 75%;
    left: 15%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 150px;
    height: 150px;
    top: 8%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    width: 110px;
    height: 110px;
    top: 65%;
    right: 8%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    33% { 
        transform: translateY(-30px) rotate(120deg) scale(1.1); 
    }
    66% { 
        transform: translateY(-15px) rotate(240deg) scale(0.9); 
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #2bd4b8 0%, #00ff95 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 300% 300%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem 0;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #2bd4b8, #00ff95);
    border-radius: 1px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2bd4b8, #00ff95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(43, 212, 184, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%),
        radial-gradient(circle at 20% 20%, rgba(43, 212, 184, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<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="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #0f172a;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2bd4b8, #3b82f6);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 212, 184, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 212, 184, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    left: 0;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(43, 212, 184, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(43, 212, 184, 0.3);
}

.service-icon {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 4px 20px rgba(43, 212, 184, 0.2));
}

.service-card:hover .service-icon img {
    transform: scale(1.15) rotateY(15deg);
    filter: drop-shadow(0 8px 30px rgba(43, 212, 184, 0.4));
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #64748b;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    font-size: 1.05rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-tag {
    background: linear-gradient(135deg, #2bd4b8 0%, #00a693 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(43, 212, 184, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 212, 184, 0.4);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(43, 212, 184, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(59, 130, 246, 0.02) 50%, transparent 51%);
    background-size: 40px 40px;
    pointer-events: none;
}

.features-section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #0f172a;
    position: relative;
    letter-spacing: -0.02em;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2bd4b8, #3b82f6);
    border-radius: 2px;
}

.features-section h2 span {
    background: linear-gradient(135deg, #2bd4b8, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-section .subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: 
        linear-gradient(145deg, #ffffff 0%, #f8fafc 100%),
        radial-gradient(circle at 20% 20%, rgba(43, 212, 184, 0.05) 0%, transparent 50%);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 8px 25px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(43, 212, 184, 0.08);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2bd4b8, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(43, 212, 184, 0.12),
        0 15px 35px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(43, 212, 184, 0.2);
}

.feature img {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(43, 212, 184, 0.2));
}

.feature:hover img {
    transform: scale(1.15) rotateY(15deg);
    filter: drop-shadow(0 8px 30px rgba(43, 212, 184, 0.4));
}

.feature h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.feature p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%),
        radial-gradient(circle at 30% 70%, rgba(43, 212, 184, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%232bd4b8" opacity="0.3"/></svg>');
    background-size: 50px 50px;
    animation: sparkle 20s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.testimonials-section .section-title {
    color: white;
    position: relative;
}

.testimonials-section .section-title::after {
    background: linear-gradient(135deg, #2bd4b8, #00ff95);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at 20% 20%, rgba(43, 212, 184, 0.1) 0%, transparent 50%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2bd4b8, #00ff95);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.testimonial:hover::before {
    transform: scaleX(1);
}

.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%),
        radial-gradient(circle at 20% 20%, rgba(43, 212, 184, 0.15) 0%, transparent 50%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.stars {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.star {
    color: #fbbf24;
    margin-right: 0.2rem;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.testimonial p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-info h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* TrustPilot Testimonials Styling */
.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    justify-content: center;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
}

/* TrustPilot CTA */
.trustpilot-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trustpilot-info {
    flex: 1;
    min-width: 300px;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.trustpilot-rating .stars {
    margin: 0;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.trustpilot-info h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trustpilot-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1.1rem;
}

.btn-trustpilot {
    background: linear-gradient(135deg, #00b67a, #00a56b);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 182, 122, 0.3);
}

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

@media (max-width: 768px) {
    .trustpilot-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .trustpilot-rating {
        justify-content: center;
    }
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #667eea 0%, #764ba2 100%),
        radial-gradient(circle at 30% 70%, rgba(43, 212, 184, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 50%, transparent 52%);
    background-size: 30px 30px;
    animation: slide 20s linear infinite;
    pointer-events: none;
}

@keyframes slide {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(30px) translateY(30px); }
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content, 
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
}

/* Additional utility classes */
.animate__animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll effects */
body.scrolled .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Content wrapper to push footer down */
.content {
    flex: 1;
}

/* Body flexbox layout for sticky footer */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}


.footer {
  padding: 60px 30px 30px;
  background-color: #0c0615;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.afooter {
  color: #ffffff!important;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column h4 {
  color: #c4c4c4;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}

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

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

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #38bdf8;
}

.footer-column p, .footer-column a {
  font-size: 14px;
  color: #d1d5db;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #999;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 40px auto 0;
}

.footer-brand {
  text-align: left;
}

.logofooter {
  font-weight: bold;
  color: #14f1d9;
  margin-right: 8px;
  width: 110px;
  height: 57px;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #38bdf8;
}

.footer-copy a {
  color: #38bdf8;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.footer-links a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
}

.language-selector {
  display: flex;
  gap: 6px;
  align-items: center;
}

.language-selector img {
  width: 20px;
  height: auto;
}

.scroll-up {
  background-color: #2b2b2b;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.scroll-up:hover {
  background-color: #444;
}

/* Responsiveness */
@media (max-width: 768px) {
  .footer-content, .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Minecraft-specific styles */
.minecraft-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #2d5016 100%);
    position: relative;
}

.minecraft-hero .hero-background {
    background: 
        radial-gradient(circle at 20% 80%, rgba(77, 144, 76, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 80, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 139, 34, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

.minecraft-block {
    background: linear-gradient(45deg, rgba(77, 144, 76, 0.6), rgba(45, 80, 22, 0.4));
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(77, 144, 76, 0.4);
    position: relative;
}

.minecraft-block::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: linear-gradient(45deg, rgba(34, 139, 34, 0.3), rgba(107, 142, 35, 0.3));
    border-radius: 8px;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.minecraft-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.minecraft-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
}

.minecraft-feature:hover {
    transform: translateY(-3px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(77, 144, 76, 0.4);
    box-shadow: 0 8px 25px rgba(77, 144, 76, 0.2);
}

.minecraft-feature i {
    width: 20px;
    height: 20px;
    color: #4d904c;
}

/* Server Type Selector */
.server-type-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.server-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.server-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.server-type.active {
    border-color: #2bd4b8;
    background: linear-gradient(135deg, rgba(43, 212, 184, 0.1), rgba(0, 166, 147, 0.1));
}

.server-type img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.server-type span {
    font-weight: 600;
    color: #333;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(43, 212, 184, 0.2);
    border-color: rgba(43, 212, 184, 0.3);
}

.pricing-card.popular {
    border-color: #2bd4b8;
    transform: scale(1.05);
}

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

.btn-plan {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #2bd4b8, #00a693);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.plan-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.plan-ram {
    background: linear-gradient(45deg, #2bd4b8, #00a693);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.plan-description {
    color: #64748b;
    font-size: 0.9rem;
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
}

.billing-period {
    color: #64748b;
    font-size: 1rem;
}

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

.plan-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem; /* Restore original spacing */
    padding: 0.5rem 0; /* Restore original padding */
    color: #333;
    font-size: 1rem; /* Restore original font size */
}

.plan-features .feature i {
    color: #2bd4b8;
    width: 16px; /* Restore original icon size */
    height: 16px; /* Restore original icon size */
}

.btn-plan {
    width: 100%;
    justify-content: center;
}

.additional-info {
    text-align: center;
    margin-top: 3rem;
    color: #64748b;
    font-style: italic;
}

/* RAM Calculator */
.ram-calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.ram-calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(43, 212, 184, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(77, 144, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.calculator-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 40px rgba(43, 212, 184, 0.3);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.calculator-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.calculator-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(43, 212, 184, 0.1), transparent);
    transition: left 0.8s ease;
}

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

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

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(43, 212, 184, 0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
    font-size: 0.95rem;
}

.form-group label i {
    width: 18px;
    height: 18px;
    color: #2bd4b8;
}

.select-wrapper {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: #2bd4b8;
    box-shadow: 0 0 0 3px rgba(43, 212, 184, 0.1);
    transform: translateY(-2px);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #64748b;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.form-control:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #2bd4b8;
}

.modern-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.type-option {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.type-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 212, 184, 0.1), rgba(77, 144, 76, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.type-option:hover {
    border-color: #2bd4b8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(43, 212, 184, 0.2);
}

.type-option:hover::before {
    opacity: 1;
}

.type-option.active {
    border-color: #2bd4b8;
    background: linear-gradient(135deg, rgba(43, 212, 184, 0.1), rgba(77, 144, 76, 0.1));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(43, 212, 184, 0.2);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.type-option:hover .option-icon,
.type-option.active .option-icon {
    transform: scale(1.1);
}

.option-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.option-content {
    position: relative;
    z-index: 1;
}

.option-title {
    font-weight: 600;
    color: #1a202c;
    display: block;
    margin-bottom: 0.25rem;
}

.option-content small {
    color: #64748b;
    font-size: 0.8rem;
}

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

.modern-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(43, 212, 184, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.modern-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(43, 212, 184, 0.4);
}

.modern-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(43, 212, 184, 0.3);
    transition: all 0.3s ease;
}

.modern-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(43, 212, 184, 0.4);
}

.slider-value-display {
    text-align: center;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(43, 212, 184, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.slider-value-display span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2bd4b8;
    display: block;
    margin-bottom: 0.2rem;
}

.slider-value-display small {
    color: #64748b;
    font-size: 0.85rem;
}

.modern-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.5);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.modern-checkbox:hover {
    background: rgba(43, 212, 184, 0.05);
    border-color: rgba(43, 212, 184, 0.2);
}

.modern-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    border-color: #2bd4b8;
    transform: scale(1.05);
}

.checkmark i {
    width: 14px;
    height: 14px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark i {
    opacity: 1;
}

.checkbox-content {
    flex: 1;
}

.checkbox-title {
    font-weight: 600;
    color: #1a202c;
    display: block;
    margin-bottom: 0.25rem;
}

.checkbox-content small {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
}

.btn-calculator {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

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

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

.btn-calculator:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(43, 212, 184, 0.4);
}

.btn-calculator:active {
    transform: translateY(-1px);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.btn-content i {
    width: 20px;
    height: 20px;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-calculator:hover .btn-glow {
    width: 200px;
    height: 200px;
}

.calculator-result-wrapper {
    position: relative;
    animation: slideInFromRight 0.6s ease-out;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.premium-result {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2bd4b8, #4d904c, #2bd4b8);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

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

.result-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: bounce 1s ease-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.result-icon i {
    width: 30px;
    height: 30px;
    color: white;
}

.result-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.result-header p {
    color: #64748b;
}

.recommended-plan-card {
    background: linear-gradient(135deg, rgba(43, 212, 184, 0.1), rgba(77, 144, 76, 0.1));
    border: 2px solid rgba(43, 212, 184, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.recommended-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(43, 212, 184, 0.2);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: fadeInScale 0.5s ease-out 0.3s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.plan-visual {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.plan-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.plan-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.plan-details h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.spec i {
    width: 16px;
    height: 16px;
    color: #2bd4b8;
}

.plan-pricing-large {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    margin-top: 1rem;
}

.plan-pricing-large .currency {
    font-size: 1.2rem;
    color: #64748b;
    vertical-align: top;
}

.plan-pricing-large .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2bd4b8;
}

.plan-pricing-large .period {
    font-size: 1rem;
    color: #64748b;
}

.result-explanation {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border-left: 4px solid #2bd4b8;
}

.explanation-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.explanation-icon i {
    width: 20px;
    height: 20px;
    color: white;
}

.result-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-large {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #2bd4b8, #4d904c);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 212, 184, 0.3);
}

.btn-secondary {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: #2bd4b8;
    color: #2bd4b8;
    transform: translateY(-2px);
}

.result-features h5 {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(43, 212, 184, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    width: 16px;
    height: 16px;
    color: #2bd4b8;
}

.feature-item span {
    font-size: 0.9rem;
    color: #64748b;
}

/* Celebration Animations */
.celebrate {
    animation: celebrate 0.8s ease-out;
}

@keyframes celebrate {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.02) rotate(1deg); }
    50% { transform: scale(1.05) rotate(-1deg); }
    75% { transform: scale(1.02) rotate(0.5deg); }
}

.pulse-celebrate {
    animation: pulseCelebrate 1s ease-in-out infinite;
}

@keyframes pulseCelebrate {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(43, 212, 184, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(43, 212, 184, 0); }
}

.celebration-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #2bd4b8, #4d904c);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp linear forwards;
    z-index: 1000;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg) scale(0.3);
    }
}

/* Enhanced Form Transitions */
.mod-group {
    transition: all 0.3s ease;
    overflow: hidden;
}

.modern-checkbox:hover .checkmark {
    border-color: #2bd4b8;
    transform: scale(1.1);
}

.form-control:hover {
    border-color: #2bd4b8;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(43, 212, 184, 0.1);
}

/* Button Loading State */
.btn-calculator.calculating {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    cursor: not-allowed;
    transform: none !important;
}

.btn-calculator.calculating .btn-content {
    opacity: 0.6;
}

.btn-calculator.calculating::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Smooth transitions for all interactive elements */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Disable transitions during page load */
.no-transition * {
    transition: none !important;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modern-options {
        grid-template-columns: 1fr;
    }
    
    .type-option {
        padding: 1rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .plan-visual {
        flex-direction: column;
        text-align: center;
    }
    
    .plan-specs {
        align-items: center;
    }
}
/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 212, 184, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
    position: relative;
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2bd4b8, #1a73e8);
    border-radius: 2px;
}

.faq-section .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.faq-item:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #2bd4b8;
    box-shadow: 0 0 0 3px rgba(43, 212, 184, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 212, 184, 0.05), rgba(26, 115, 232, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover .faq-question::before {
    opacity: 1;
}

.faq-item.active .faq-question::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(43, 212, 184, 0.1), rgba(26, 115, 232, 0.1));
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    position: relative;
    z-index: 1;
}

.faq-question i {
    width: 24px;
    height: 24px;
    color: #2bd4b8;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    position: relative;
    z-index: 1;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #1a73e8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-section .container {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

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

/* Smooth transitions for better UX */
.faq-item * {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.faq-question:focus {
    outline: 2px solid #2bd4b8;
    outline-offset: 2px;
}

.faq-question:focus-visible {
    outline: 2px solid #2bd4b8;
    outline-offset: 2px;
}