/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.navbar-item {
    font-weight: 500;
}

/* Hero */
.hero-gradient {
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
}

.hero-image-box {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    border-radius: 8px;
}

/* Feature boxes */
.feature-box {
    height: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Step numbers */
.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #00d1b2 0%, #00c4a7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Buttons */
.button.is-primary {
    background: linear-gradient(135deg, #00d1b2 0%, #00c4a7 100%);
    border: none;
    font-weight: 600;
    color: #ffffff !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.is-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 209, 178, 0.3);
    background: linear-gradient(135deg, #00c4a7 0%, #00b89c 100%);
    color: #ffffff !important;
}

.button.is-primary span,
.button.is-primary .icon {
    color: #ffffff !important;
}

.button.is-outlined {
    border-width: 2px;
    font-weight: 600;
}

/* Footer */
.footer.has-background-dark {
    padding: 4rem 1.5rem 2rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Boxes */
.box {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Tags */
.tag.is-primary.is-light {
    background-color: rgba(0, 209, 178, 0.1);
    color: #00d1b2;
    font-weight: 600;
}

/* Section spacing */
.section.is-medium {
    padding: 6rem 1.5rem;
}

/* Ensure dark titles on light backgrounds */
.title {
    color: #1a1a2e !important;
}

.title.is-1,
.title.is-2,
.title.is-3,
.title.is-4,
.title.is-5,
.title.is-6 {
    color: #1a1a2e !important;
}

/* White titles on dark/primary backgrounds */
.has-background-primary .title,
.has-background-dark .title,
.footer .title,
.title.has-text-light {
    color: #ffffff !important;
}

.has-text-white {
    color: #ffffff !important;
}

/* Primary color override */
.has-text-primary {
    color: #00d1b2 !important;
}

.has-background-primary {
    background-color: #00d1b2 !important;
}

/* Free Banner - gradient style */
.free-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.free-banner .title {
    color: #ffffff !important;
}

/* Trusted section */
.trusted-section {
    background: linear-gradient(135deg, #00a896 0%, #00d1b2 100%);
}

/* Contact CTA section */
.has-background-primary-dark {
    background: linear-gradient(135deg, #00a896 0%, #00d1b2 100%);
}

.has-background-primary-dark .title {
    color: #ffffff !important;
}

/* Responsive adjustments */
/* Contact Form */
.contact-form-box {
    padding: 2.5rem;
}

.contact-form .label {
    font-weight: 600;
    color: #1a1a2e;
}

.contact-form .input,
.contact-form .textarea {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .input:focus,
.contact-form .textarea:focus {
    border-color: #00d1b2;
    box-shadow: 0 0 0 3px rgba(0, 209, 178, 0.1);
}

.contact-form .input::placeholder,
.contact-form .textarea::placeholder {
    color: #9ca3af;
}

.contact-form .icon.is-left {
    color: #9ca3af;
}

.contact-form .input:focus + .icon.is-left,
.contact-form .textarea:focus + .icon.is-left {
    color: #00d1b2;
}

/* Image Slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide:first-of-type {
    display: block;
    position: relative;
}

.slide.active {
    display: block;
}

.slideshow-container.js-ready .slide {
    position: absolute;
}

.slideshow-container.js-ready .slide:first-of-type {
    display: none;
    position: absolute;
}

.slideshow-container.js-ready .slide.active {
    display: block;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.slide.fade {
    animation-name: fadeIn;
    animation-duration: 0.8s;
}

@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.slideshow-dots {
    text-align: center;
    padding: 12px 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dot.active,
.dot:hover {
    background-color: #00d1b2;
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .hero .title.is-1 {
        font-size: 2rem;
    }
    
    .hero .subtitle.is-4 {
        font-size: 1.1rem;
    }
    
    .section.is-medium {
        padding: 4rem 1.5rem;
    }
    
    .columns.is-vcentered .column.is-4.has-text-right {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .contact-form-box {
        padding: 1.5rem;
    }
    
    .dot {
        height: 10px;
        width: 10px;
    }
}
