/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #FF6B00, #FF9C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B00, #FF9C00);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #027bc8, #4cb0f5);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 123, 200, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FF6B00;
    border: 2px solid #FF6B00;
}

.btn-outline:hover {
    background: #FF6B00;
    color: white;
}

.pricing-card .btn-outline {
    border: 2px solid #FF6B00;
    color: #FF6B00;
    background: white;
}

.pricing-card .btn-outline:hover {
    background: #FF6B00;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF6B00;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 3rem;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 85%;
    background-image: url('../assets/images/background/background-hero.png');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-animation {
    position: relative;
    width: 550px;
    height: 550px;
    z-index: 3;
}

#cute-dog-animation {
    width: 100%;
    height: 100%;
    max-width: 550px;
    max-height: 550px;
    filter: drop-shadow(0 15px 35px rgba(255, 107, 0, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentle-float 4s ease-in-out infinite;
}

#cute-dog-animation:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 20px 40px rgba(255, 107, 0, 0.2));
}

/* Enhanced keyframes for floating animation */
@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-0.5deg);
    }
}

/* Responsive adjustments for the Lottie animation */
@media (max-width: 768px) {
    #cute-dog-animation {
        max-width: 400px;
        max-height: 400px;
        animation: gentle-float 3s ease-in-out infinite;
    }
    
    /* Adjust hero background for tablets */
    .hero::before {
        width: 60%;
        height: 75%;
        background-position: right top;
    }
    
    .hero-visual {
        height: 450px;
    }
    
    .hero-animation {
        width: 400px;
        height: 400px;
    }
}

/* For smaller tablets and larger phones */
@media (max-width: 600px) {
    .hero::before {
        width: 70%;
        height: 60%;
    }
    
    #cute-dog-animation {
        max-width: 350px;
        max-height: 350px;
    }
    
    .hero-animation {
        width: 350px;
        height: 350px;
    }
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    #cute-dog-animation {
        animation: none;
    }
    
    #cute-dog-animation:hover {
        transform: none;
        filter: drop-shadow(0 15px 35px rgba(255, 107, 0, 0.15));
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-carousel {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.features-tabs {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 50px;
    background: #e8e8e8;
    color: #666;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-btn.active {
    background: linear-gradient(135deg, #FF6B00, #FF9C00);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.tab-btn:hover {
    background: linear-gradient(135deg, #FF6B00, #FF9C00);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
}

.tab-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-img:hover {
    transform: scale(1.05);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF6B00, #FF9C00);
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header .section-title {
    color: white;
}

.stats-header .section-description {
    color: white;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-slider {
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin: 0 1rem;
    text-align: center;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 2px solid #FF6B00;
    background: linear-gradient(135deg, #FF6B00, #FF9C00);
    color: white;
    transform: scale(1.05);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.featured:hover {
    transform: scale(1.1) translateY(-8px);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .plan-description {
    color: white;
}

.pricing-card.featured .plan-features li {
    color: white;
}

.pricing-card.featured .currency,
.pricing-card.featured .amount,
.pricing-card.featured .period {
    color: white;
}

.pricing-card.featured .btn-primary {
    background: linear-gradient(135deg, #027bc8, #4cb0f5);
}

.pricing-card.featured .btn-primary:hover {
    background: linear-gradient(135deg, #0264a0, #3a9dd9);
    box-shadow: 0 8px 25px rgba(2, 123, 200, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #027bc8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.plan-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.25rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B00;
}

.period {
    font-size: 1rem;
    color: #666;
}

.plan-features {
    margin-bottom: auto;
    text-align: left;
}

.plan-features li {
    padding: 0;
    color: #666;
    font-size: 0.9rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    padding: 0.4rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B00, #FF9C00);
    border-radius: 50%;
}

.contact-details h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B00;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faqs {
    padding: 6rem 0;
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question h4 {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #FF6B00;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    padding-left: 2.5rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-links-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-link {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.footer-nav-link:hover {
    color: #FF6B00;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: #FF6B00;
    transform: translateY(-3px) scale(1.1);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-copyright {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
      .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }      .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .hero::before {
        width: 75%;
        height: 65%;
        background-size: contain;
        background-position: center top;
    }
    
    .hero-animation {
        width: 350px;
        height: 350px;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
      .footer-links-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-social {
        margin: 1rem 0;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 1rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .hero-animation {
        width: 300px;
        height: 300px;
    }
    
    #cute-dog-animation {
        max-width: 300px;
        max-height: 300px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px;
    }
}
