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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-menu a.active {
    background: white;
    color: #16a085;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: url('https://scontent.fsgn2-7.fna.fbcdn.net/v/t39.30808-6/479522366_9538871732799855_7752484772382291210_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=cc71e4&_nc_eui2=AeF5G6f3CxY2mR32HEZu7xCxgLSbir4OlReAtJuKvg6VF1wOjx_SxFsYIk7IBT7S99EF_v1iwGFcNHgubdsl23Uy&_nc_ohc=e-5pBYT2xZwQ7kNvwF-vup5&_nc_oc=Adr6tAf_qM3OFxLVH5o8ltjqlg4AL0v_F5hyfiXrczMYu2xkTO7kFRC8ZZm_MbyuNyHNvNHE13MogLw1bU758z_d&_nc_zt=23&_nc_ht=scontent.fsgn2-7.fna&_nc_gid=OFg1B2QFEc-NcGQg4z1XMg&_nc_ss=7b2a8&oh=00_Af4NiSloGfjUFQnUr76orc9vm9GodXjLcbIvFNLLc0hDXw&oe=6A164385');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

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

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #16a085;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #16a085;
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #16a085;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item h4 {
    font-size: 3rem;
    color: #16a085;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #16a085;
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.skill-card ul {
    list-style: none;
}

.skill-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.skill-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

/* Featured Service - Unlock Accounts */
.featured-service {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 60px rgba(22, 160, 133, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(22, 160, 133, 0.3);
    }
    50% {
        box-shadow: 0 25px 70px rgba(22, 160, 133, 0.5);
    }
}

.featured-service-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    color: white;
}

.featured-icon {
    font-size: 5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.featured-text h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.featured-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.unlock-platforms {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.unlock-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.unlock-item i {
    font-size: 1.5rem;
}

.unlock-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.unlock-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
}

.unlock-features i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.featured-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-unlock {
    background: white;
    color: #16a085;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-unlock:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-unlock:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.services-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(22, 160, 133, 0.3);
}

.service-card i {
    font-size: 3rem;
    color: #16a085;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Story Section */
.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Pricing Section */
.pricing {
    background: #f8f9fa;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.featured-pricing {
    border: 3px solid #16a085;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.pricing-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.facebook-bg {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.instagram-bg {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-bg {
    background: linear-gradient(135deg, #000000, #333333);
}

.pricing-body {
    padding: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

.price {
    font-weight: bold;
    color: #16a085;
    white-space: nowrap;
    font-size: 1rem;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 160, 133, 0.4);
}

.pricing-notes {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #16a085;
}

.pricing-notes h3 {
    color: #16a085;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #16a085;
}

.featured-testimonial {
    border: 3px solid #FFD700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.best-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.avatar {
    font-size: 4rem;
    color: #16a085;
    line-height: 1;
}

.customer-info h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.customer-role {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-body {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: #16a085;
    opacity: 0.2;
}

.testimonial-body p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
    padding-left: 1rem;
}

.testimonial-footer {
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.service-used {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-used i {
    font-size: 1.1rem;
}

/* Testimonials Stats */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 160, 133, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Story Section */
.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #16a085;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 2rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info, .payment-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h3, .payment-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #16a085;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #16a085;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.tiktok {
    background: #000000;
}

.social-icon.telegram {
    background: #0088cc;
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.contact-form h4 {
    font-size: 1.3rem;
    color: #16a085;
    margin-bottom: 0.5rem;
}

.form-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.promo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a085;
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.1);
}

.form-group select {
    cursor: pointer;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 160, 133, 0.4);
}

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

.btn-submit i {
    font-size: 1rem;
}

.form-message {
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: slideDown 0.5s ease;
}

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

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.error-message {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.error-message i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.form-message p {
    margin: 0.5rem 0;
}

.form-message strong {
    font-size: 1.2rem;
}

/* Bank Cards */
.bank-card {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.momo-card {
    background: linear-gradient(135deg, #A50064 0%, #D82D8B 100%);
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.bank-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 8px;
    display: inline-block;
}

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

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bank-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-item .label {
    opacity: 0.9;
}

.bank-item .value {
    font-weight: bold;
    font-size: 1.1rem;
}

.qr-code {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    text-align: center;
}

.qr-image {
    width: 200px;
    height: 200px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: inline-block;
    object-fit: contain;
}

.qr-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.payment-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.payment-note i {
    color: #ffc107;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.payment-note p {
    color: #856404;
    margin: 0;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0.5rem 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(22, 160, 133, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(22, 160, 133, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.scroll-animate-left.show {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scroll-animate-right.show {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scroll-animate-scale.show {
    opacity: 1;
    transform: scale(1);
}

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

/* Hide menu toggle on desktop */
.menu-toggle {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Header & Navigation */
    .header {
        padding: 0;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar .container {
        position: relative;
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-radius: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        text-align: left;
        border-radius: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.95rem;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Section */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    /* About */
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-item h4 {
        font-size: 2.5rem;
    }
    
    /* Skills */
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skill-card {
        padding: 1.5rem;
    }
    
    .skill-icon {
        font-size: 2.5rem;
    }
    
    .skill-card h3 {
        font-size: 1.3rem;
    }
    
    .skill-card ul li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Featured Service */
    .featured-service {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .featured-service-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .featured-icon {
        font-size: 3rem;
    }
    
    .featured-text h3 {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .featured-subtitle {
        font-size: 1rem;
    }
    
    .unlock-platforms {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .unlock-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .unlock-item i {
        font-size: 1.2rem;
    }
    
    .unlock-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        text-align: left;
    }
    
    .unlock-features li {
        font-size: 0.9rem;
        justify-content: flex-start;
    }
    
    .featured-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-unlock {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .featured-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
        text-align: center;
    }
    
    .services-subtitle {
        font-size: 1.4rem;
    }
    
    /* Pricing */
    .pricing-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-pricing {
        transform: scale(1);
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
    
    .pricing-header {
        padding: 1.5rem;
    }
    
    .pricing-header i {
        font-size: 2.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.4rem;
    }
    
    .pricing-body {
        padding: 1.5rem;
    }
    
    .price-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 0;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .price {
        align-self: flex-start;
        font-size: 0.95rem;
    }
    
    .pricing-footer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .btn-pricing {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .pricing-notes {
        padding: 1.5rem;
    }
    
    .pricing-notes h3 {
        font-size: 1.3rem;
    }
    
    .pricing-notes li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    /* Testimonials */
    .testimonials-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .avatar {
        font-size: 3rem;
    }
    
    .customer-info h4 {
        font-size: 1.2rem;
    }
    
    .customer-role {
        font-size: 0.85rem;
    }
    
    .rating {
        justify-content: center;
    }
    
    .rating i {
        font-size: 0.9rem;
    }
    
    .testimonial-body p {
        font-size: 0.9rem;
        padding-left: 0.5rem;
    }
    
    .service-used {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Story Timeline */
    .story-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
        margin-bottom: 2rem;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        flex: 0 0 40px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin: 0;
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info, .payment-info {
        padding: 1.5rem;
    }
    
    .contact-info h3, .payment-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.2rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .contact-item strong {
        font-size: 0.95rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .social-links h4 {
        font-size: 1.1rem;
    }
    
    .social-icons {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    /* Contact Form */
    .contact-form h4 {
        font-size: 1.2rem;
    }
    
    .form-description {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .form-message {
        padding: 1.2rem;
    }
    
    .form-message i {
        font-size: 2.5rem;
    }
    
    .form-message strong {
        font-size: 1.1rem;
    }
    
    .form-message p {
        font-size: 0.9rem;
    }
    
    /* Bank Cards */
    .bank-card {
        padding: 1.2rem;
    }
    
    .bank-logo {
        height: 35px;
    }
    
    .bank-header h4 {
        font-size: 1.2rem;
    }
    
    .bank-details {
        gap: 0.6rem;
    }
    
    .bank-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .bank-item .label {
        font-size: 0.85rem;
    }
    
    .bank-item .value {
        font-size: 1rem;
    }
    
    .qr-code {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
    }
    
    .qr-image {
        width: 180px;
        height: 180px;
        padding: 8px;
    }
    
    .qr-note {
        font-size: 0.85rem;
    }
    
    .payment-note {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .payment-note i {
        font-size: 1.3rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }
    
    .footer p {
        margin: 0.3rem 0;
    }
    
    /* Back to Top Button */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    /* Popular Badge */
    .popular-badge {
        top: 10px;
        right: 10px;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .best-badge {
        top: -12px;
        right: 15px;
        padding: 6px 15px;
        font-size: 0.75rem;
    }
}

/* Extra small devices (phones in portrait, less than 576px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .featured-text h3 {
        font-size: 1.3rem;
    }
    
    .unlock-platforms {
        flex-direction: column;
        align-items: stretch;
    }
    
    .unlock-item {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #16a085;
    color: white;
}
