* {
    font-family: 'Heebo', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Header */
.navbar {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #2d3436;
}

/* Navbar Links - Override Bootstrap */
.navbar-nav .nav-link {
    color: #2d3436 !important;
    margin: 0 15px;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #00b894 !important;
    background-color: #e8f8f5 !important;
}

/* Active Tab Styling */
.navbar-nav .nav-link.active {
    color: white !important;
    background-color: #00b894 !important;
    font-weight: 600 !important;
}

/* Alternative: If you prefer underline style */
.navbar-nav .nav-link.active-underline {
    color: #00b894 !important;
    background-color: #e8f8f5 !important;
    font-weight: 600 !important;
    border-bottom: 3px solid #00b894 !important;
}


p.spp{
    max-width: 60%;
    margin: 0 auto;
    text-align: center; 
}

.btn-login {
    background-color: #e8f8f5;
    color: #00b894;
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-image {
    background-color: #4a5568;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary-custom {
    background-color: #00b894;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #00a383;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,184,148,0.3);
    color: white;
}

.btn-secondary-custom {
    background-color: transparent;
    color: #00b894;
    border: 2px solid #00b894;
    padding: 13px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 15px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background-color: #00b894;
    color: white;
}

.badge-custom {
    background-color: white;
    color: #00b894;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.features-section .row {
    display: flex;
    flex-wrap: wrap;
}

.features-section .col-md-3,
.features-section .col-md-4 {
    display: flex;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 60px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    background: linear-gradient(135deg, #e8f8f5, #d5f4e6);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #00b894;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.feature-card p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-section .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-section .col-md-4 {
    display: flex;
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 3px solid #00b894;
    transform: scale(1.05);
}

.pricing-badge {
    background-color: #00b894;
    color: white;
    padding: 5px 5px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 5px;
}

.pricing-card .period {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: right;
}

.pricing-features li {
    padding: 12px 0;
    color: #636e72;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    background-color: #00b894;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background-color: #00a383;
    transform: translateY(-2px);
}

.btn-more {
    background-color: transparent;
    color: #00b894;
    border: 2px solid #00b894;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-radius: 30px;
    overflow: hidden;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
}

.about-text p {
    color: #636e72;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 10px 0;
    background-color: #f8f9fa;
}

.testimonials-section .row {
    display: flex;
    flex-wrap: wrap;
}

.testimonials-section .col-md-4,
.testimonials-section .col-md-6 {
    display: flex;
}

.testimonial-card {
    background-color: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3436;
    font-size: 1rem;
}

.testimonial-role {
    color: #b2bec3;
    font-size: 0.85rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #00b894, #00d2a0);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-control-custom {
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 1rem;
    width: 100%;
}

.btn-submit {
    background-color: white;
    color: #00b894;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-submit-alt {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 50px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 15px;
}

/* Footer */
.footer {
    background-color: #2d3436;
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #00b894;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #636e72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #00b894;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #636e72;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: #b2bec3;
    font-size: 0.9rem;
}

/* Page Content Styles */
.page-header {
    background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: #636e72;
}

.page-content {
    padding: 60px 0;
    background-color: white;
}

.content-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-card h3 {
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-card p {
    color: #636e72;
    line-height: 1.7;
}

.contact-section {
    background: linear-gradient(135deg, #4db8a8 0%, #3a9d8f 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.form-row {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
}

.form-row input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    text-align: right;
}

.btn-send {
    padding: 15px 40px;
    background: white;
    color: #4db8a8;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-full-contact,
.btn-whatsapp {
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-full-contact {
    background: white;
    color: #4db8a8;
}

.btn-whatsapp {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-full-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-whatsapp:hover {
    background: white;
    color: #4db8a8;
}

#message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

#message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

#message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-secondary-custom {
        margin-right: 0;
        margin-top: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}