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

body {
    background: linear-gradient(135deg, rgb(227, 242, 253) 0%, rgb(187, 222, 251) 25%, rgb(144, 202, 249) 50%, rgb(100, 181, 246) 75%, rgb(66, 165, 245) 100%);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgb(59, 130, 246), rgb(34, 197, 94));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, rgb(37, 99, 235), rgb(22, 163, 74));
}

/* Header */
#header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    width: 48px;
    height: 48px;
    position: relative;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.site-subtitle {
    font-size: 0.875rem;
    color: #4b5563;
}

.header-right {
    text-align: right;
}

.time-display {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.date-display {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
    background: white;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.gradient-text {
    background: linear-gradient(to right, rgb(59, 130, 246), rgb(34, 197, 94));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.btn-primary {
    background: linear-gradient(to right, rgb(59, 130, 246), rgb(34, 197, 94));
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 9999px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Sections */
.section-gray {
    padding: 5rem 1rem;
    background: #f9fafb;
}

.section-white {
    padding: 5rem 1rem;
    background: white;
}

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

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

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

.step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.step-card:nth-child(2) {
    animation-delay: 0.1s;
}

.step-card:nth-child(3) {
    animation-delay: 0.2s;
}

.step-card:nth-child(4) {
    animation-delay: 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.gradient-blue {
    background: linear-gradient(to bottom right, rgb(59, 130, 246), rgb(37, 99, 235));
}

.gradient-green {
    background: linear-gradient(to bottom right, rgb(34, 197, 94), rgb(22, 163, 74));
}

.gradient-purple {
    background: linear-gradient(to bottom right, rgb(168, 85, 247), rgb(147, 51, 234));
}

.gradient-orange {
    background: linear-gradient(to bottom right, rgb(249, 115, 22), rgb(234, 88, 12));
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    text-align: center;
}

.step-description {
    color: #4b5563;
    text-align: center;
    line-height: 1.6;
}

/* Share Section */
.share-text-box {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.share-text {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-outline {
    border: 2px solid rgb(59, 130, 246);
    color: rgb(59, 130, 246);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgb(239, 246, 255);
}

.icon {
    width: 20px;
    height: 20px;
}

/* Social Buttons */
.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-btn {
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.social-btn:nth-child(2) {
    animation-delay: 0.1s;
}

.social-btn:nth-child(3) {
    animation-delay: 0.2s;
}

.social-btn:nth-child(4) {
    animation-delay: 0.3s;
}

.social-facebook {
    background: #1877F2;
}

.social-facebook:hover {
    background: #166FE5;
}

.social-messenger {
    background: #00B2FF;
}

.social-messenger:hover {
    background: #0099E6;
}

.social-viber {
    background: #7360F2;
}

.social-viber:hover {
    background: #6B4CE6;
}

.social-whatsapp {
    background: #25D366;
}

.social-whatsapp:hover {
    background: #22BF5B;
}

.social-text {
    font-weight: 500;
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }
.faq-item:nth-child(6) { animation-delay: 0.5s; }

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    padding-right: 1rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: rgb(59, 130, 246);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(to right, rgb(30, 58, 138), rgb(21, 94, 117));
    color: white;
    padding: 3rem 1rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.footer-text {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.footer-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgb(191, 219, 254);
    margin-bottom: 1.5rem;
}

.footer-email a {
    color: rgb(191, 219, 254);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgb(191, 219, 254);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgb(191, 219, 254);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

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

/* Responsive */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-right {
        text-align: center;
    }
    
    .social-text {
        display: none;
    }
}
