@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #16b843;
    --primary-dark: #059669;
    --secondary: #90fcd4;
    --dark: #0F172A;
    --light: #F8FAFC;
    --gradient: linear-gradient(135deg, #16b843 0%, #90fcd4 100%);
      /* Add new font and color variables */
    --font-inter: "Inter", sans-serif;
    --font-Michroma: "Michroma", sans-serif;
    --font-Manrope: "Manrope", sans-serif;
    --font-Nunito: "Nunito Sans", sans-serif;
    --color-primary: #16b843;
    --color-grayText: #6b7280;
    --color-darkText: #111827;
    --color-redBg: #ff4f59;
}

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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: var(--light);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    margin: 0 0.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #16b843 0%, #059669 100%);
    border: none;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 184, 67, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(22, 184, 67, 0.35);
    background: linear-gradient(135deg, #14a63a 0%, #047857 100%);
}

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

.btn-outline-primary {
    border: 2px solid #16b843;
    color: #16b843;
    background: transparent;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #16b843;
    transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-outline-primary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-outline-primary:hover {
    color: white;
    border-color: #16b843;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(22, 184, 67, 0.25);
}

.btn-outline-primary:active {
    transform: translateY(-1px);
}
select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2316b843' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    appearance: none;
}

/* Radio Button Styles */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.radio-option:hover {
    border-color: var(--color-primary);
    background: rgba(22, 184, 67, 0.05);
    transform: translateY(-2px);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #CBD5E1;
    border-radius: 50%;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    transition: transform 0.2s ease;
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-option input[type="radio"]:checked ~ .radio-label {
    color: var(--color-primary);
    font-weight: 600;
}

.radio-label {
    font-size: 0.95rem;
    color: var(--color-darkText);
    transition: all 0.3s ease;
}
/* Light button variant for CTA section */
.btn-light {
    background: white;
    color: #16b843;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #f0fdf4;
    color: #14a63a;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255,255,255,0.3);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #16b843;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(52, 211, 153, 0.05) 100%);
    position: relative;
    overflow: hidden;
    padding: 10rem 0 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

/* Hero Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(16, 185, 129, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}
/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-inter);
    color: var(--color-darkText);
}

.section-subtitle {
    color: var(--color-grayText);
    font-family: var(--font-inter);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(22, 184, 67, 0.15);
    border-color: var(--color-primary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #059669 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.contact-card:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(22, 184, 67, 0.4);
}

.contact-card h3 {
    font-family: var(--font-inter);
    color: var(--color-darkText);
}

.contact-card p {
    color: var(--color-grayText);
    font-family: var(--font-inter);
}

.contact-card a {
    color: var(--color-primary);
    font-family: var(--font-inter);
}
/* Contact Form */
/* Input Validation States */
.form-control.is-invalid {
    border-color: var(--color-redBg);
    animation: shake 0.4s ease;
}

.form-control.is-valid {
    border-color: var(--color-primary);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.invalid-feedback {
    color: var(--color-redBg);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: var(--font-inter);
    display: none;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}
.form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(240, 253, 244, 1) 100%);
}

.form-container {
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--color-darkText);
    margin-bottom: 0.5rem;
    display: block;
    font-family: var(--font-inter);
    transition: color 0.3s ease;
}

.form-group:focus-within .form-label {
    color: var(--color-primary);
}
.form-control {
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    font-family: var(--font-inter);
    color: var(--color-darkText);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(22, 184, 67, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--color-grayText);
}
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: var(--font-inter);
    animation: slideIn 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 2px solid var(--color-primary);
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 2px solid var(--color-redBg);
}

.form-message i {
    font-size: 1.3rem;
}

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

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, #059669 100%);
    border: none;
    padding: 1rem 3rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(22, 184, 67, 0.3);
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: var(--font-inter);
    width: auto !important;
    display: flex;
    align-items: center !important;
    margin: auto;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(22, 184, 67, 0.5);
}

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

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Map Section */
.map-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
        background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(240, 253, 244, 1) 100%);

}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    height: 450px;
}


/* Floating Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(4, 138, 33, 0.3));
    opacity: 1;
    animation: riseBubble 15s infinite ease-in-out;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.5), 0 0 20px rgba(29, 106, 80, 0.2);
    z-index: 1; /* Add this line */
    pointer-events: none; /* Add this line to make bubbles non-clickable */
}

.bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-delay: 0s; animation-duration: 12s; }
.bubble:nth-child(2) { width: 60px; height: 60px; left: 20%; animation-delay: 2s; animation-duration: 14s; }
.bubble:nth-child(3) { width: 100px; height: 100px; left: 35%; animation-delay: 4s; animation-duration: 16s; }
.bubble:nth-child(4) { width: 70px; height: 70px; left: 50%; animation-delay: 1s; animation-duration: 13s; }
.bubble:nth-child(5) { width: 90px; height: 90px; left: 65%; animation-delay: 3s; animation-duration: 15s; }
.bubble:nth-child(6) { width: 50px; height: 50px; left: 80%; animation-delay: 5s; animation-duration: 11s; }
.bubble:nth-child(7) { width: 110px; height: 110px; left: 90%; animation-delay: 2.5s; animation-duration: 17s; }

@keyframes riseBubble {
    0% {
        bottom: -120px;
        transform: translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateX(0) scale(1);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        bottom: 110%;
        transform: translateX(100px) scale(0.8);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero .container {
    position: relative;
    z-index: 10;
}


.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.device-mockup {
    position: relative;
    animation: floatDevice 6s ease-in-out infinite;
    perspective: 1000px;
}

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

.mockup-img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.2));
    border-radius: 20px;
    transition: all 0.5s ease;
}

.mockup-img:hover {
    transform: scale(1.05);
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
    opacity: 0.7;
    color: var(--primary);
}

/* Toolbar Section */
.toolbar-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.section-title {
    
    font-weight: 800;
    text-align: center;
     font-size: 2.2rem; /* Reduced from 2.8rem */
    margin-bottom: 2.5rem; 
    color: var(--dark);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.tab-pills {
    display: flex;
    overflow-x: auto;
 padding: 0.8rem 0 1.5rem; /* Reduced padding */
    gap: 0.8rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #E2E8F0;
}

.tab-pills::-webkit-scrollbar {
    height: 8px;
}

.tab-pills::-webkit-scrollbar-track {
    background: #E2E8F0;
    border-radius: 10px;
}

.tab-pills::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

.tab-pill {
  padding: 0.8rem 1.5rem; /* Reduced from 1rem 2rem */
    font-size: 0.95rem;
    border-radius: 50px;
    background: #F1F5F9;
    cursor: pointer;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    display: flex;
    align-items: center;
 
}

.tab-pill:hover {
    background: #E2E8F0;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab-pill.active {
    background: var(--gradient);
    color: white;
    /* box-shadow: 0 8px 20px rgba(12, 212, 146, 0.4); */
    transform: translateY(-5px);
}

.tab-content-area {
  margin-top: 2rem; /* Reduced from 3rem */
    min-height: 400px; /* Reduced from 500px */
    position: relative;
    overflow: hidden;
}

.tab-image {
    max-height: 600px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: fadeInUp 0.6s ease;
     transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    transform: scale(1);
}
.tab-image.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.tab-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

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

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(240, 253, 244, 1) 100%);
}
.feature-li {
    color: #F8FAFC !important;
}
.feature-list .feature-li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: white !important;
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list .feature-li:hover {
    color: var(--secondary) !important;
    padding-left: 2.5rem;
}


.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border: 1px solid #E2E8F0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 20px;
    opacity: 0;
    animation: iconPulse 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.6rem 0;
    color: #64748B;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: var(--primary);
    padding-left: 2.5rem;
}

.feature-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat Section */
.chat-section {
    padding: 6rem 0;
    background: var(--gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.chat-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.chat-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.chat-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: white;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    border: 2px solid #E2E8F0;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.25);
}

.pricing-card.featured {
    background: var(--gradient);
    color: white;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 2rem 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured .price {
    color: white;
    -webkit-text-fill-color: white;
}

.pricing-card.featured .feature-list li {
    color: white;
}

.pricing-card.featured .feature-list li:before {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Launch Steps */
.launch-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(240, 253, 244, 1) 100%);
}

.launch-steps {
    text-align: center;
    position: relative;
}

.launch-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 0;
}

.launch-steps .col-md-3 {
    position: relative;
    z-index: 1;
}

.launch-steps h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    color: var(--dark);
}

.launch-steps p {
    color: #64748B;
}

/* CTA Banner */
.cta-banner {
    padding: 7rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -250px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    animation: float 20s ease-in-out infinite reverse;
}

.cta-banner h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.8rem;
}

footer a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-brand {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 0.8rem;
    transition: all 0.3s ease;
    color: white;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(360deg);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

    .launch-steps::before {
        display: none;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .hero-carousel {
        padding: 8rem 0 4rem;
        min-height: 60vh;
    }

    .carousel-slide {
        height: 350px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .form-section {
        padding: 4rem 0;
    }

    .map-section {
        padding: 4rem 0;
    }

    .map-container {
        height: 300px;
    }
}
