/* Base Styles */
:root {
    --primary-color: #FFD700;
    --primary-dark: #cca900;
    --primary-light: #ffeb80;
    --secondary-color: #111;
    --dark-color: #000;
    --light-color: #fff;
    --grey-color: #333;
    --grey-light: #444;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --glow: 0 0 10px rgba(255, 215, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    opacity: 0.5;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-logo {
    width: 100px;
    height: 100px;
    animation: pulse 1.5s infinite alternate;
}

.loader-text {
    margin-top: 20px;
    color: var(--primary-color);
    font-size: 18px;
    letter-spacing: 2px;
}

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

/* Common Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.btn:hover:before {
    transform: translate(-50%, -50%) scale(1.5);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: var(--glow);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-color);
    opacity: 0.8;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.logo {
    width: 150px;
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    font-weight: 500;
    position: relative;
}

.nav ul li a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav ul li a:hover {
    color: var(--primary-color);
}

.nav ul li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to bottom, var(--dark-color), var(--secondary-color));
    overflow: hidden;
}

.hero:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--dark-color), transparent);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 50%;
}

.title {
    font-size: 29px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title span:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    width: 45%;
    position: relative;
}

.globe {
    width: 100%;
    opacity: 0.8;
}

.connection-point {
    animation: pulse 2s infinite alternate;
}

.connection-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw 4s forwards infinite alternate;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.globe-highlight {
    opacity: 0.3;
    animation: rotate 30s linear infinite;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.7;
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

.services:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
                      radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 20%);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.8), rgba(20, 20, 20, 0.8));
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(5px);
    text-align: center;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

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

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    margin-bottom: 20px;
    opacity: 0.8;
}

.service-features {
    margin: 20px 0;
    text-align: right;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
}

.service-features li.not-included {
    opacity: 0.5;
    text-decoration: line-through;
}

.service-features li.not-included:before {
    content: "✗";
}

.service-card.featured {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.3);
    z-index: 2;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.9), rgba(25, 25, 25, 0.9));
}

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

.service-tag {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}

/* Features Banner */
.features-banner {
    padding: 60px 0;
    background: linear-gradient(90deg, var(--dark-color), var(--secondary-color), var(--dark-color));
    position: relative;
    overflow: hidden;
}

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

.features-content {
    text-align: center;
}

.features-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-item p {
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

.pricing:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
                      radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 20%);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--light-color);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    position: relative;
}

.tab-btn:first-child {
    border-radius: 0 30px 30px 0;
}

.tab-btn:last-child {
    border-radius: 30px 0 0 30px;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.discount {
    font-size: 12px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 2px 5px;
    border-radius: 4px;
    margin-right: 5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.8), rgba(20, 20, 20, 0.8));
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 16px;
    opacity: 0.8;
    margin-right: 5px;
}

.amount {
    font-size: 36px;
    font-weight: 700;
}

.amount.yearly {
    display: none;
}

.period {
    font-size: 14px;
    opacity: 0.8;
    margin-right: 5px;
}

.pricing-features {
    margin: 30px 0;
    text-align: right;
}

.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-right: 25px;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
}

.pricing-features li.not-included {
    opacity: 0.5;
}

.pricing-features li.not-included:before {
    content: "✗";
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.3);
    z-index: 2;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.9), rgba(25, 25, 25, 0.9));
}

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

.pricing-tag {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-content p {
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

.testimonials:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFD700' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    margin-bottom: 30px;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.testimonial-content {
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.8), rgba(20, 20, 20, 0.8));
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 215, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.star {
    color: var(--primary-color);
    font-size: 20px;
    margin-left: 2px;
}

.star.half {
    position: relative;
}

.star.half:after {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: var(--grey-light);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--grey-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
}

.author-role {
    opacity: 0.7;
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.control-btn:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--grey-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: rgba(35, 35, 35, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(40, 40, 40, 0.8);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    height: auto;
    background-color: rgba(30, 30, 30, 0.6);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

.contact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.contact-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-text p {
    opacity: 0.8;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(35, 35, 35, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-link:hover svg path {
    fill: var(--dark-color);
}

.contact-form {
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.8), rgba(20, 20, 20, 0.8));
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--light-color);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-about {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 20px;
    width: 150px;
}

.footer-about p {
    opacity: 0.8;
    max-width: 400px;
}

.footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.footer h3:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-right: 5px;
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 0 30px 30px 0;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    padding: 10px 15px 10px 55px;
    border-radius: 30px 0 0 30px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.newsletter-form .btn:hover {
    background-color: var(--primary-dark);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
    direction: ltr;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 70%;
    }

    .title {
        font-size: 30px; 
    }

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

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .nav ul li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-image {
        width: 90%;
    }

    .section-title {
        font-size: 28px;
    }

    .pricing-grid,
    .services-grid,
    .features-list {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-item {
        width: 120px;
    }
}

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

[data-period="yearly"] .amount.monthly {
    display: none;
}

[data-period="yearly"] .amount.yearly {
    display: block;
}

