/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B33198;
    --primary-dark: #8f2679;
    --primary-light: #d647b3;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --danger-color: #f56565;
    --warning-color: #ed8936;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header and Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Marquee - Top Bar */
.header-marquee {
    background: #9A2982;
    color: white;
    padding: 0.5rem 0;
    overflow: hidden;
    width: 100%;
}

/* Ads Styling */
.ads-container {
    margin: 1.5rem 0;
}

.ads-header {
    text-align: center;
    padding: 1rem 0;
}

.ads-sidebar {
    margin: 2rem 0;
}

.ads-footer {
    text-align: center;
    padding: 1.5rem 0;
    background: var(--bg-light);
}

.ads-content {
    text-align: center;
    margin: 2rem auto;
    max-width: 100%;
}

.ad-item {
    margin-bottom: 1.5rem;
}

.ad-item:last-child {
    margin-bottom: 0;
}

.ad-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.ad-code {
    text-align: center;
}

.ads-sidebar .ad-item {
    margin-bottom: 2rem;
}

.ads-sidebar .ad-image {
    width: 100%;
    max-width: 300px;
}

@media (max-width: 768px) {
    .ads-container {
        margin: 1rem 0;
    }
    
    .ads-sidebar .ad-image {
        max-width: 100%;
    }
}

.header-marquee marquee {
    height: auto;
    line-height: 1.8;
    color: white;
}

.header-marquee span {
    display: inline-block;
    padding: 0 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
}

.header-marquee i {
    margin-right: 0.5rem;
    color: white;
}

.navbar {
    padding: 0.8rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
}

.menu-close-btn {
    display: none;
}

.profile-dropdown {
    position: relative;
}

.profile-dropdown .user-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.profile-dropdown .user-name:hover {
    background: var(--bg-light);
}

.profile-dropdown .dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 180px;
    z-index: 10000;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.profile-dropdown.active .dropdown-menu {
    display: block !important;
}

.profile-dropdown .dropdown-menu li {
    margin: 0;
    list-style: none;
    padding: 0;
}

.profile-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.profile-dropdown .dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(179, 49, 152, 0.1);
}

.btn-login {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: var(--primary-dark) !important;
}

.btn-submit-proposal {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-submit-proposal:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 49, 152, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 49, 152, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Buttons Container */
.contact-buttons-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-buttons-container .btn-contact-now,
.contact-buttons-container .btn-whatsapp {
    flex: 1;
}

.btn-contact-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-contact-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 49, 152, 0.3);
    color: var(--white);
}

.btn-contact-now i {
    font-size: 1.2rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-whatsapp:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 49, 152, 0.3);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-buttons-container {
        flex-direction: column;
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .btn-contact-now,
    .btn-whatsapp {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1200');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(179, 49, 152, 0.9) 0%, rgba(143, 38, 121, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.stat-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(179, 49, 152, 0.15);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(179, 49, 152, 0.3);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0;
}

.stat-card h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-features i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(179, 49, 152, 0.1), rgba(143, 38, 121, 0.1));
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Proposals Section */
.proposals-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.proposals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.proposal-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.proposal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(179, 49, 152, 0.2);
    border-color: var(--primary-light);
}

.proposal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.proposal-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.proposal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.proposal-card:hover .proposal-image img {
    transform: scale(1.1);
}

.proposal-content {
    padding: 1.5rem;
}

.proposal-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.proposal-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.proposal-info i {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(179, 49, 152, 0.15);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.2;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 0.5rem 0;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.footer-col ul li i {
    color: var(--primary-light);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

select.form-control {
    cursor: pointer;
}

/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #c6f6d5;
    color: #22543d;
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: #fed7d7;
    color: #742a2a;
    border-left: 4px solid var(--danger-color);
}

.alert-info {
    background: #bee3f8;
    color: #2c5282;
    border-left: 4px solid #4299e1;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 0.5rem 0;
        z-index: 9999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .menu-close-btn {
        display: flex;
        justify-content: flex-end;
        padding: 0.5rem 1rem;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0.3rem;
    }
    
    .close-menu {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    .close-menu:hover {
        background: var(--bg-light);
        color: var(--primary-dark);
        transform: rotate(90deg);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.6rem 1rem;
        text-align: left;
        width: 100%;
        border-radius: 0;
    }
    
    .btn-submit-proposal {
        justify-content: flex-start;
        width: 100%;
        border-radius: 5px;
        margin: 0.3rem 0;
    }

    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Profile dropdown in mobile */
    .profile-dropdown {
        width: 100%;
    }
    
    .profile-dropdown .user-name {
        width: 100%;
        justify-content: flex-start;
        padding: 0.6rem 1rem;
        text-align: left;
    }
    
    .profile-dropdown .dropdown-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        background: var(--bg-light);
        padding: 0;
        z-index: 10001;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.3s ease;
    }
    
    .profile-dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        max-height: 500px !important;
        animation: slideDown 0.3s ease;
    }
    
    .profile-dropdown .dropdown-menu a {
        padding: 0.5rem 1rem 0.5rem 2.5rem;
        text-align: left;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .footer-logo-image {
        height: 50px;
        max-width: 150px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .proposals-grid {
        grid-template-columns: 1fr;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }
    
    .proposal-image {
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 480px) {
    .proposal-image {
        height: 280px;
    }
    
    .proposal-image img {
        object-fit: cover;
        object-position: center top;
    }
}

/* Loading Spinner */
.spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   NEW PROFESSIONAL LAYOUT STYLES
   ============================================ */

/* Banner Slider */
.banner-slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.banner-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 49, 152, 0.7), rgba(143, 38, 121, 0.7));
    z-index: 1;
}

.banner-slide-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    width: 100%;
    padding: 0 1rem;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 25;
}

.banner-slide-content {
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.banner-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.banner-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.btn-banner-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: none;
    position: relative;
    z-index: 30;
}

.btn-banner-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.btn-submit-proposal {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--white) !important;
}

.btn-submit-proposal:hover {
    background: var(--white) !important;
    color: var(--primary-dark) !important;
    opacity: 0.95;
}

/* Slider Controls */
.banner-slider-prev,
.banner-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.banner-slider-prev {
    left: 2rem;
}

.banner-slider-next {
    right: 2rem;
}

.banner-slider-prev:hover,
.banner-slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.banner-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 1;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.banner-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 968px) {
    .banner-slider-section {
        height: 500px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-description {
        font-size: 1.1rem;
    }
    
    .banner-slider-prev,
    .banner-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .banner-slider-prev {
        left: 1rem;
    }
    
    .banner-slider-next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .banner-slider-section {
        height: 400px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .banner-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
    
    .btn-banner-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .banner-slide-content {
        padding: 0 1.5rem;
    }
    
    .banner-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
    }
    
    .banner-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        display: block !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .banner-slider-section {
        height: 100vh;
    }
    
    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .btn-banner-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .banner-slide-content {
        padding: 0 1rem;
    }
    
    .banner-buttons {
        flex-direction: column !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
    
    .banner-buttons .btn {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
}

/* Promotional Banner (Old - keeping for reference) */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 1rem 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
}

.promo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.promo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: var(--white);
}

.promo-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.promo-text span {
    font-size: 0.95rem;
    opacity: 0.95;
}

.btn-promo {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-promo:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.promo-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.promo-close i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .promo-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .promo-close {
        position: static;
        transform: none;
        margin-top: 0.5rem;
    }
    
    .promo-text {
        text-align: center;
    }
}

/* Section Label */
.section-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(179, 49, 152, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* New Hero Banner */
.hero-banner-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(179, 49, 152, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    animation: fadeInLeft 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(179, 49, 152, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--primary-color);
}

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

.hero-subtitle-new {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Hero Image Section */
.hero-image-content {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(179, 49, 152, 0.2);
}

.hero-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.hero-floating-card strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-floating-card span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1s;
}

.hero-floating-card.card-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(179, 49, 152, 0.15);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(179, 49, 152, 0.3);
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 2.8rem;
    color: var(--white);
}

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

.feature-card > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
    min-height: 60px;
}

.feature-image {
    border-radius: 15px;
    overflow: hidden;
    margin-top: auto;
    height: 200px;
    width: 100%;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

/* New Stats Section */
.stats-section-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.stats-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1200');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-section-new .container {
        padding: 0 15px;
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        width: 100%;
        max-width: 100%;
    }
    
    .stat-card-new {
        padding: 0.8rem 0.4rem;
        min-width: 0;
        overflow: hidden;
    }
    
    .stat-card-new h3 {
        font-size: 0.9rem;
        word-break: break-word;
        line-height: 1.2;
        margin-bottom: 0.2rem;
        font-weight: 700;
    }
    
    .stat-icon-wrapper-new {
        width: 35px;
        height: 35px;
        margin-bottom: 0.4rem;
    }
    
    .stat-card-new i {
        font-size: 1rem;
    }
    
    .stat-card-new p {
        font-size: 0.6rem;
        word-break: break-word;
        line-height: 1.2;
        margin: 0;
        font-weight: 500;
    }
}

.stat-card-new {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stat-icon-wrapper-new {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(179, 49, 152, 0.4);
}

.stat-card-new i {
    font-size: 2.8rem;
    color: var(--white);
}

.stat-card-new h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card-new p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

/* New About Section */
.about-section-new {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper-new {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image-wrapper-new img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.about-badge span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-text-new {
    padding-left: 2rem;
}

.about-text-new h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-text-new > p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-features-new {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(179, 49, 152, 0.1);
    transform: translateY(-2px);
}

.about-feature-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

/* Center the 3rd and 4th items if there are 4 items */
.about-features-new .about-feature-item:nth-child(3):nth-last-child(2) {
    grid-column: 1;
}

.about-features-new .about-feature-item:nth-child(4):last-child {
    grid-column: 2;
}

.about-feature-item i {
    font-size: 1.5rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.about-feature-item > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    flex-wrap: wrap;
}

.about-feature-item strong {
    display: inline;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.about-feature-item span {
    display: inline;
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.about-feature-item strong::after {
    display: none;
    content: none;
}

/* New Proposals Section */
.proposals-section-new {
    padding: 6rem 0;
    background: var(--white);
}

/* Responsive Design for New Layout */
@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-main-image {
        height: 400px;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .about-content-new {
        grid-template-columns: 1fr;
    }
    
    .about-text-new {
        padding-left: 0;
    }
    
    .about-image-wrapper-new img {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-image {
        height: 180px;
    }
    
    
    .about-features-new {
        grid-template-columns: 1fr;
    }
}

/* Floating WhatsApp Button - Sticky Icon */
.whatsapp-float {
    position: fixed !important;
    width: 60px;
    height: 60px;
    bottom: 90px !important;
    right: 20px !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #25D366 !important;
    color: white !important;
    border-radius: 50% !important;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 99999 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
    cursor: pointer;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float:hover {
    background-color: #20ba5a !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 90px !important;
        right: 15px !important;
        top: auto !important;
        left: auto !important;
        font-size: 26px;
    }
}