:root {
    --primary-color: #012371;
    --secondary-color: #cd0f8b;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.1);
    --card-border: rgba(255, 255, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --gradient-start: var(--primary-color);
    --gradient-end: var(--secondary-color);
    --menu-bg: var(--primary-color);
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--text-color);
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 16px;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

/* Header & Navigation */
header {
    background-color: var(--menu-bg);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--white);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 24px;
}

.menu li a {
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.menu li a:hover, .menu li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-login {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px !important;
    border-radius: 4px;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

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

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: var(--white);
    margin: 3px 0;
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero, .pricing-hero, .faq-hero {
    padding: 100px 0 80px;
    text-align: center;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.platform-icons {
    display: inline-block;
    font-size: 1.6rem;
    margin-left: 8px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #e01698;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Features Section */
.features, .how-it-works, .benefits {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
}

.feature-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card, .benefit-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover, .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon, .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

/* How It Works */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

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

/* Pricing Page */
.pricing-section {
    padding: 40px 0 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--card-border);
}

.pricing-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.pricing-description {
    min-height: 50px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.pricing-period {
    margin-bottom: 0;
    opacity: 0.8;
}

.pricing-features {
    padding: 32px 24px;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pricing-features ul li i {
    color: var(--secondary-color);
}

.pricing-cta {
    padding: 0 24px 32px;
    text-align: center;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.pricing-note a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.05);
}

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

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 32px 24px;
    transition: all var(--transition-speed) ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-top: 24px;
    margin-bottom: 24px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FAQ Page */
.faq-section {
    padding: 40px 0 80px;
}

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

.faq-item {
    margin-bottom: 16px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: all var(--transition-speed) ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.faq-item.active .faq-question {
    background-color: rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 1000px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--menu-bg);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all var(--transition-speed) ease;
        z-index: 999;
    }

    .menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hamburger {
        display: flex;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .feature-grid, .benefits-grid, .pricing-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .step {
        min-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .main-heading {
        font-size: 1.8rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  background-color: #25d366; /* WhatsApp default */
}

.float-btn.call {
  background-color: #0a66c2; /* Call button blue */
}

.float-btn:hover {
  transform: scale(1.1);
}

}
