/* Facebook Page Specific Styles */

/* Hero Section */
.hero-section.facebook {
    background: linear-gradient(180deg, rgba(24, 119, 242, 0.85) 0%, rgba(24, 119, 242, 0.7) 50%, rgba(10, 22, 40, 0.85) 100%),
                url('https://images.pexels.com/photos/4348404/pexels-photo-4348404.jpeg?auto=compress&cs=tinysrgb&w=2070') center/cover no-repeat;
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-section.facebook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(37, 99, 235, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(37, 99, 235, 0.25) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-section.facebook .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

.hero-section.facebook .hero-badge i {
    font-size: 1.1rem;
}

.hero-section.facebook .hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-section.facebook .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-section.facebook .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-section.facebook .hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.hero-section.facebook .hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.hero-section.facebook .hero-feature:hover {
    transform: scale(1.05);
}

.hero-section.facebook .hero-feature i {
    font-size: 1.5rem;
    color: #60a5fa;
    filter: drop-shadow(0 2px 8px rgba(96, 165, 250, 0.4));
}

/* Button Styles */
.btn-primary-blue {
    padding: 16px 45px;
    background: linear-gradient(135deg, #4285F4, #0d47a1);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.btn-primary-blue:hover {
    background: linear-gradient(135deg, #3367D6, #0a3d82);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
}

.btn-primary-blue:active {
    transform: translateY(-2px);
}

.btn-telegram {
    padding: 14px 32px;
    background: linear-gradient(135deg, #0088cc, #006699);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #0077b3, #005577);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.btn-whatsapp-large {
    padding: 14px 32px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background: linear-gradient(135deg, #20BD5A, #0f796e);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-outline-white {
    padding: 16px 45px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline-white:active {
    transform: translateY(-2px);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Value Section */
.value-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.value-section .value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.value-section .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-section .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1877f2 0%, #0d47a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-section .value-icon i {
    font-size: 2rem;
    color: #fff;
}

.value-section .value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Services Section */
.services-section {
    padding: 100px 0;
}

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

.services-section .service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.2);
}

.services-section .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1877f2 0%, #0d47a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.services-section .service-icon i {
    font-size: 2rem;
    color: #fff;
}

.services-section .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-section .service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-section .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1877f2;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-section .btn-link:hover {
    gap: 12px;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-us-section .why-us-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-us-section .why-us-item {
    display: flex;
    gap: 25px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-us-section .why-us-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-us-section .why-us-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1877f2 0%, #0d47a1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
}

.why-us-section .why-us-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.why-us-section .why-us-content p {
    color: #666;
    line-height: 1.6;
}

/* Cases Section */
.cases-section {
    padding: 100px 0;
}

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

.cases-section .case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cases-section .case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cases-section .case-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.cases-section .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cases-section .case-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1877f2;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cases-section .case-content {
    padding: 30px;
}

.cases-section .case-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cases-section .case-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cases-section .case-stats {
    display: flex;
    gap: 30px;
}

.cases-section .case-stat {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cases-section .case-stat .num {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1877f2;
    margin-bottom: 5px;
}

.cases-section .case-stat .label {
    font-size: 0.9rem;
    color: #666;
}

.cases-section .cases-cta {
    text-align: center;
    margin-top: 50px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.process-section .process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-section .process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.3);
}

.process-section .process-card:hover .process-step {
    background: #0066d6;
    transform: scale(1.1);
}

.process-section .process-step {
    width: 60px;
    height: 60px;
    background: #1877f2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.process-section .process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.process-section .process-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.process-section .process-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.process-section .process-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1877f2;
    font-weight: bold;
}

/* Guarantee Section */
.guarantee-section {
    padding: 100px 0;
}

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

.guarantee-section .guarantee-item {
    text-align: center;
    padding: 30px;
}

.guarantee-section .guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1877f2 0%, #0d47a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guarantee-section .guarantee-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.guarantee-section .guarantee-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.guarantee-section .guarantee-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-section .cta-buttons a {
    margin: 0;
}

/* Float Button */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0088cc, #006699);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    opacity: 0.6;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.float-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.5);
}

.float-btn .float-tooltip {
    position: absolute;
    right: 75px;
    background: linear-gradient(135deg, #0088cc, #006699);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section.facebook .hero-title {
        font-size: 2rem;
    }
    
    .hero-section.facebook .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-section.facebook .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .why-us-section .why-us-list {
        grid-template-columns: 1fr;
    }
    
    .cases-section .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
