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

:root {
    --primary-color: #04a84b;
    --primary-dark: #128C7E;
    --secondary-color: #667eea;
    --accent-color: #764ba2;
    --text-dark: #2D3748;
    --text-light: #718096;
    --highlight: #FFD166;
    --highlight-dark: #00297d;
	--button-light:#0042c7;
	--button-dark:#00297d;
    --background-light: #F7FAFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    /* color: var(--text-light); */
    color: #060606;
}

.mt-5 {
	margin-top:50px;
}

.mt-3 {
	margin-top:30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--button-dark), var(--button-light));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.btn-whatsapp {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-dark);
    text-decoration: none;
}

.dropdown-content a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, #56CCF2 0%, #2F80ED 100%);
    color: var(--white);
}

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

.hero-title {
    /* font-size: 3.5rem; */
    font-size: 3.0rem;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--highlight-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-dark);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badges {
    margin-top: 2rem;
}

.badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.badges img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.badges img:hover {
    opacity: 1;
}

.hero-visual {
    text-align: center;
}

.whatsapp-demo img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Services Section */
.services {
    background: var(--background-light);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    background: var(--background-light);
}

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

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    /* margin: 1rem 0; */
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author img {
    border-radius: 50%;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 0 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-description {
	color:#ffffff;
}

.footer-copyright p {
	color:#ffffff;
}

.footer-social a {
	color:#ffffff;
	text-decoration:none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact .contact-item {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #4A5568;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

/* Service Icons */
.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-icon .fa-whatsapp {
    /* color: #25D366; */
	color: var(--primary-color);
}

.service-icon .fa-robot {
    /* color: #667eea; */
	color: var(--primary-color);
}

.service-icon .fa-sms {
    /* color: #764ba2; */
	color: var(--primary-color);
}

/* Feature Icons */
.feature-icon i {
    font-size: 1.5rem;
    /* color: #25D366; */
    color: var(--white);
    /* margin-bottom: 1rem; */
    margin-bottom: 0;
}

/* Check marks in lists */
.service-features i,
.pricing-features i,
.tab-text li i {
    /* color: #25D366; */
	color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Tab buttons */
.tab-button i {
    margin-right: 0.5rem;
}

/* FAQ icons */
.faq-question i.fa-question-circle {
    margin-right: 0.5rem;
    /* color: #25D366; */
	color: var(--primary-color);
}

/* Testimonial quotes */
.testimonial-content .fa-quote-left,
.testimonial-content .fa-quote-right {
    color: #25D366;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* CTA features */
.cta-features i {
    color: #25D366;
    margin-right: 0.5rem;
}

/* Arrow icons in links */
.btn-link i,
.btn i.fa-arrow-right {
    transition: transform 0.3s ease;
}

.btn-link:hover i,
.btn:hover i.fa-arrow-right {
    transform: translateX(3px);
}

/* Use Cases Section */
.use-cases {
    background: var(--background-light);
    padding: 80px 0;
}

.use-cases-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.tab-button:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tab-button i {
    font-size: 1.1rem;
}

.tab-content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 0;
}

.tab-pane.active {
    display: block;
}

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

.tab-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.tab-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.tab-text li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tab-text li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.tab-visual {
    text-align: center;
}

.tab-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Responsive Design for Use Cases */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .tab-content-inner {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }
    
    .tab-text h3 {
        font-size: 1.5rem;
    }
    
    .tab-text li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .tab-content-inner {
        padding: 1.5rem;
    }
    
    .tab-text h3 {
        font-size: 1.3rem;
    }
    
    .tab-text li {
        font-size: 1rem;
    }
}

/* About Us Page Styles - Updated Hero Section */
.subpage-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.hero-breadcrumb {
    margin-top: 15px;
    font-size: 14px;
    margin-bottom: 30px;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hero-breadcrumb span {
    color: white;
    font-weight: 500;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.about-hero-content .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Compact Feature Grid for Hero Section */
.about-features-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item-compact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.feature-item-compact h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item-compact h3 i {
    /* color: var(--primary-color); */
    color: var(--white);
    font-size: 1.2rem;
}

.feature-item-compact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-content h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.years {
    display: block;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--background-light);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
}

.why-choose-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.why-choose-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.why-choose-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.location-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.location-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-icon {
    font-size: 24px;
}

.location-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.location-content {
    padding: 25px;
}

.location-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-info {
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.contact-method p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .subpage-hero {
        padding: 100px 0 40px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-features-compact {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .location-content {
        padding: 20px;
    }
}

/* Additional styles for WABA overview page */
.benefit-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.benefit-highlight strong {
    font-weight: 600;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

/* Trust badges in hero */
.trust-badges p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Text center utility */
.text-center {
    text-align: center;
}

/* Service icons colors */
.service-icon .fa-bullhorn { color: #E53E3E; }
.service-icon .fa-robot { color: #3182CE; }
.service-icon .fa-film { color: #805AD5; }
.service-icon .fa-plug { color: #38A169; }
.service-icon .fa-shopping-bag { color: #DD6B20; }
.service-icon .fa-hotel { color: #319795; }
.service-icon .fa-heartbeat { color: #E53E3E; }
.service-icon .fa-university { color: #D69E2E; }

/* Feature icons in value prop */
.feature-icon .fa-sync-alt { color:white; }
.feature-icon .fa-robot { color: white; }
.feature-icon .fa-chart-line { color: #f093fb; }
.feature-icon .fa-users { color: #4fd1c7; }

/* Security feature icons */
.feature-icon .fa-handshake { color:white; }
/* .feature-icon .fa-lock { color: #4299E1; } */
.feature-icon .fa-lock { color: #ffffff; }
.feature-icon .fa-badge-check { color: #ED8936; }
/* .feature-icon .fa-shield-alt { color: #9F7AEA; } */
.feature-icon .fa-shield-alt { color: #ffffff; }

@media (max-width: 768px) {
    .service-card.featured {
        transform: none;
    }
    
    .benefit-highlight {
        font-size: 0.8rem;
        padding: 12px;
    }
}

/* Subpage Hero Section */
.subpage-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
}

.subpage-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.subpage-hero .hero-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
}

.subpage-hero .hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.subpage-hero .hero-breadcrumb span {
    color: white;
    font-weight: 500;
}

.subpage-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.subpage-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Hero Features Compact */
.hero-features-compact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero CTA Compact */
.hero-cta-compact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Bar */
.stats-bar {
    background: var(--background-light);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stat-item {
    text-align: center;
}

.stat-number-hero {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Value Proposition Section */
.value-proposition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

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

.value-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    color: var(--text-dark);
}

.standard, .api {
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
}

.standard {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.api {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.standard i, .api i {
    font-size: 1.1rem;
}

/* Value Visual */
.value-visual {
    text-align: center;
}

.architecture-diagram img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .subpage-hero {
        padding: 120px 0 40px;
    }
    
    .subpage-hero h1 {
        font-size: 2rem;
    }
    
    .subpage-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features-compact {
        gap: 1rem;
    }
    
    .hero-feature {
        padding: 6px 12px;
    }
    
    .hero-feature span {
        font-size: 0.8rem;
    }
    
    .hero-cta-compact {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-compact .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-proposition {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features-compact {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .comparison-row {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
}

/* WABA Features Page Styles */
.feature-section {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.feature-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Security Features */
.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-item i {
    width: 50px;
    height: 50px;
    /* background: var(--background-light); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.security-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.security-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Security Visual */
.security-visual {
    position: relative;
    text-align: center;
}

.encryption-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.media-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-3px);
}

.media-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.media-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* AI Features */
.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-feature i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ai-feature h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.ai-feature p {
    margin: 0;
    font-size: 0.95rem;
}

/* AI Process Section */
.ai-process-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.ai-process-section .section-header h2,
.ai-process-section .section-header p {
    color: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.step-content ul {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
}

/* Interactive Menu */
.interactive-menu {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.menu-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-option:last-child {
    border-bottom: none;
}

.option-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Conversation Flow */
.conversation-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 1rem 1.5rem;
    border-radius: 18px;
    max-width: 80%;
    position: relative;
}

.message.customer {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.ai {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.example-message {
    margin-top: 1rem;
}

.message-bubble {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 18px;
    border-bottom-left-radius: 5px;
    display: inline-block;
}

/* Analytics Metrics */
.analytics-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.metric {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Comprehensive Features Grid */
.features-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advanced-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.advanced-feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

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

.advanced-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Feature Visuals */
.feature-visual {
    text-align: center;
}

.feature-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-grid.reverse {
        direction: ltr;
    }
    
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid-advanced {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-metrics {
        grid-template-columns: 1fr;
    }
    
    .security-item,
    .ai-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .security-item i,
    .ai-feature i {
        align-self: center;
    }
    
    .message {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .feature-content h2 {
        font-size: 1.8rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .advanced-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .interactive-menu {
        padding: 1rem;
    }
}

/* META Verified Page Styles */
.verification-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.highlight-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.verification-demo {
    position: relative;
    text-align: center;
}

.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-features {
    list-style: none;
}

.benefit-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Eligibility Section */
.eligibility-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.eligibility-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}

.eligibility-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.eligibility-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.eligibility-header h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.2rem;
}

.eligibility-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.eligibility-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.eligibility-check i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.eligibility-check span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Process Steps Vertical */
.process-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step-vertical {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number-vertical {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.step-content-vertical p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-feature i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.step-feature span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.requirement-item i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.requirement-item div {
    flex: 1;
}

.requirement-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.requirement-item span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Application Steps */
.application-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.app-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.app-step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.app-step span:last-child {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Approval Timeline */
.approval-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-status {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    position: relative;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-color);
}

.timeline-item.active .timeline-dot::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: -4px;
    left: -4px;
    animation: pulse 2s infinite;
}

.timeline-time {
    color: var(--text-light);
    font-size: 0.9rem;
    min-width: 60px;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

/* Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.success-tips, .mistakes-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-item, .mistake-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-icon, .mistake-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.tip-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.mistake-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.tip-content h4, .mistake-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-content p, .mistake-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 968px) {
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .verification-highlights {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-step-vertical {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number-vertical {
        align-self: center;
    }
    
    .benefits-grid,
    .eligibility-cards {
        grid-template-columns: 1fr;
    }
    
    .application-steps {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .timeline-status {
        order: 1;
    }
    
    .timeline-dot {
        order: 2;
    }
    
    .timeline-time {
        order: 3;
    }
}

@media (max-width: 480px) {
    .benefit-card,
    .eligibility-card {
        padding: 2rem 1.5rem;
    }
    
    .requirement-item,
    .app-step {
        padding: 0.8rem;
    }
    
    .tip-item,
    .mistake-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .tip-icon,
    .mistake-icon {
        align-self: center;
    }
}

/* OTP/TAC Service Page Styles */
.otp-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.otp-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.otp-benefit i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.otp-benefit h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.otp-benefit p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.otp-demo {
    position: relative;
    text-align: center;
}

.delivery-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features Detail Grid */
.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-detail-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-detail-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

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

.feature-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
	flex:2;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.scaling-tiers {
    display: flex;
    gap: 1rem;
}

.tier {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--background-light);
    border-radius: 8px;
}

.tier-volume {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.tier-desc {
    font-size: 0.8rem;
    color: var(--text-light);
}

.reporting-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.reporting-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reporting-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.security-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.use-case-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.use-case-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.use-case-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.use-case-features span {
    background: var(--background-light);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Integration Steps */
.integration-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.integration-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.integration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 850px;
    margin: 0 auto;
}

.integration-step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Pricing & CTA Section */
.pricing-cta-grid {
    display: grid;
    /* grid-template-columns: 2fr 1fr; */
    grid-template-columns: 2fr;
    gap: 3rem;
    align-items: start;
}

.pricing-info h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.price-tier {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid transparent;
}

.price-tier.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tier-header h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.tier-features {
    list-style: none;
}

.tier-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* CTA Sidebar */
.cta-sidebar {
    position: sticky;
    top: 100px;
}

.cta-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.cta-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cta-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.cta-feature i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.cta-feature span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .feature-detail-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-stats,
    .scaling-tiers {
        justify-content: center;
    }
    
    .reporting-features {
        grid-template-columns: 1fr;
    }
    
    .integration-steps {
        grid-template-columns: 1fr;
    }
    
    .price-tier.featured {
        transform: none;
    }
    
    .otp-benefit {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .otp-benefit i {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .features-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .price-tiers {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Chatbot Auto-Response Page Styles */
.benefit-metrics {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature-sublist {
    list-style: none;
    margin-top: 1rem;
}

.feature-sublist li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.feature-sublist li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    /* color: white; */
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-method span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* Escalation Options */
.escalation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.escalation-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.escalation-option i {
    color: var(--primary-color);
    font-size: 1rem;
}

.escalation-option span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Demo Section */
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.demo-feature i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.demo-feature span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.demo-cta {
    margin-top: 2rem;
}

/* Chat Container */
.chat-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-messages {
    padding: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

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

.ai-message {
    align-self: flex-start;
}

.customer-message {
    align-self: flex-end;
}

.message-content {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    line-height: 1.4;
}

.ai-message .message-content {
    background: var(--background-light);
    color: var(--text-dark);
    border-bottom-left-radius: 5px;
}

.customer-message .message-content {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    text-align: right;
}

.ai-message .message-time {
    text-align: left;
}

/* Integration Grid */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.integration-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.integration-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.integration-features {
    list-style: none;
}

.integration-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
}

.integration-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .escalation-options {
        grid-template-columns: 1fr;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-methods {
        gap: 0.75rem;
    }
    
    .contact-method {
        padding: 0.75rem;
    }
    
    .chat-container {
        max-width: 100%;
    }
    
    .message {
        max-width: 90%;
    }
    
    .benefit-metrics {
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .integration-card {
        padding: 2rem 1.5rem;
    }
    
    .chat-header {
        padding: 1rem;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .message-content {
        padding: 0.75rem 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-method i {
        align-self: center;
    }
}


/* Customizable Forms Page Styles */
.forms-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.forms-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.forms-benefit i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.forms-benefit h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.forms-benefit p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.forms-demo {
    position: relative;
    text-align: center;
}

.completion-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Workflow Section */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    border: 2px solid var(--primary-color);
}

.step-content {
    flex: 1;
}

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

.step-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* CTA Preview */
.cta-preview {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.cta-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* Form Preview */
.form-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.field-input {
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

/* API Preview */
.api-preview {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
}

.code-snippet {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
}

.code-snippet code {
    display: block;
    color: #4ade80;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.code-snippet code:first-child {
    color: #60a5fa;
}

/* Use Cases Enhanced */
.use-case-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    transform: scale(1.02);
}

.use-case-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.form-elements {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.form-element {
    background: var(--background-light);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Message Bubbles */
.message-bubble {
    max-width: 300px;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    line-height: 1.4;
    margin-top: 1rem;
}

.message-bubble.customer {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 5px;
    margin-left: auto;
}

.message-bubble.ai {
    background: var(--background-light);
    color: var(--text-dark);
    border-bottom-left-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .workflow-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-visual {
        flex-direction: row;
        gap: 1rem;
    }
    
    .forms-benefit {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .forms-benefit i {
        align-self: center;
    }
    
    .use-case-card.featured {
        transform: none;
    }
    
    .form-preview,
    .api-preview {
        max-width: 100%;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .workflow-steps {
        gap: 2rem;
    }
    
    .step-visual {
        flex-direction: column;
    }
    
    .form-elements {
        justify-content: center;
    }
    
    .message-bubble {
        max-width: 250px;
        padding: 0.75rem 1rem;
    }
}


/* WhatsApp vs SMS Comparison Page Styles */
.migration-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.migration-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.migration-benefit i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.migration-benefit h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.migration-benefit p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-demo {
    position: relative;
    text-align: center;
}

.advantage-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Comparison Table */
.comparison-table-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 3rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    font-weight: 600;
}

.feature-category {
    font-size: 1.1rem;
}

.sms-column, .waba-column {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.sms-column i, .waba-column i {
    font-size: 1.5rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.comparison-row:hover {
    background: var(--background-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.sms-value, .waba-value {
    text-align: center;
    position: relative;
}

.sms-value .value, .waba-value .value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.sms-value .value {
    color: #dc2626;
}

.waba-value .value {
    color: #16a34a;
}

.sms-value .label, .waba-value .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.advantage-indicator {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #16a34a;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Advantages Grid */
.advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.advantage-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advantage-card.reverse {
    direction: rtl;
}

.advantage-card.reverse > * {
    direction: ltr;
}

.advantage-visual {
    text-align: center;
}

.advantage-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.advantage-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.advantage-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.advantage-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.advantage-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Feature Stats */
.feature-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Segmentation Badges */
.segmentation-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.segment-badge {
    background: var(--background-light);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Use Case Comparison */
.use-case-comparison {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.sms-version, .waba-version {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.sms-version strong {
    color: #dc2626;
}

.waba-version strong {
    color: #16a34a;
}

.sms-version {
    color: var(--text-light);
    text-decoration: line-through;
}

.waba-version {
    color: var(--text-dark);
    font-weight: 500;
}

/* Migration CTA */
.migration-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.migration-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.migration-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 968px) {
    .advantage-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantage-card.reverse {
        direction: ltr;
    }
    
    .advantage-features {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-category {
        display: none;
    }
}

@media (max-width: 768px) {
    .migration-steps {
        grid-template-columns: 1fr;
    }
    
    .migration-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .migration-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .migration-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .comparison-header {
        padding: 1rem;
    }
    
    .comparison-row {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .feature-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .segmentation-badges {
        justify-content: center;
    }
    
    .advantage-indicator {
        position: static;
        margin-top: 0.5rem;
        display: inline-block;
    }
}


/* Sending Links via WABA Page Styles */
.regional-coverage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.country-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.country-flag {
    font-size: 2rem;
    flex-shrink: 0;
}

.country-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.country-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.link-demo {
    position: relative;
    text-align: center;
}

.engagement-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Link Types Grid */
.link-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-type-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.link-type-card:hover {
    transform: translateY(-5px);
}

.link-type-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.link-type-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.link-type-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.link-preview {
    background: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.preview-image {
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.preview-image::after {
    content: 'Image Preview';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    opacity: 0.8;
}

.preview-content {
    padding: 1rem;
}

.preview-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.preview-description {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.preview-price, .preview-source, .preview-meta, .preview-cta {
    font-size: 0.8rem;
    font-weight: 600;
}

.preview-price {
    color: var(--primary-color);
}

.preview-source, .preview-meta {
    color: var(--text-light);
}

.preview-cta {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Country Tags */
.country-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.country-tag {
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.country-tag.malaysia {
    background: rgba(0, 102, 51, 0.1);
    color: #006633;
    border: 1px solid rgba(0, 102, 51, 0.2);
}

.country-tag.indonesia {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.country-tag.singapore {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* Technical Implementation */
.implementation-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.implementation-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    border: 2px solid var(--primary-color);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 600;
    position: absolute;
    left: 0;
}

.code-example {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.code-example code {
    display: block;
    color: #4ade80;
    font-size: 0.9rem;
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.code-example code:first-child {
    color: #60a5fa;
    background: #2d2d2d;
}

.code-example code:last-child {
    border-bottom: none;
}

.analytics-preview {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.metric-preview {
    text-align: center;
}

.metric-preview .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-preview .metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .regional-coverage {
        gap: 0.75rem;
    }
    
    .country-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .implementation-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-visual {
        flex-direction: row;
    }
    
    .analytics-preview {
        flex-direction: column;
        gap: 1rem;
    }
    
    .link-types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .country-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .code-example code {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    .step-features li {
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }
}


/* Step-by-Step Implementation Page Styles */
.implementation-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.highlight-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.implementation-flow {
    position: relative;
    text-align: center;
}

.support-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Detailed Implementation Steps */
.implementation-steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.implementation-step-detailed {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.step-marker {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.step-title h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.step-title p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.step-content {
    padding: 2rem;
}

.step-details {
    display: grid;
    grid-template-columns: 0.33fr 0.33fr 0.33fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-column h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-features {
    list-style: none;
}

.step-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.step-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.tip-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.tip-content {
    flex: 1;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.tip-content strong {
    color: var(--primary-color);
}

/* Code Examples */
.code-example, .code-snippet {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.code-example h5, .code-snippet h5 {
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    background: #2d2d2d;
    font-size: 0.9rem;
    font-weight: 600;
}

.code-example pre, .code-snippet code {
    display: block;
    color: #4ade80;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    padding: 1.5rem;
    margin: 0;
    line-height: 1.5;
    overflow-x: auto;
}

.code-snippet code {
    background: #1a1a1a;
    border-radius: 8px;
}

/* Integration Options */
.integration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.integration-option {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.option-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.integration-option h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.integration-option p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.integration-option ul {
    list-style: none;
    text-align: left;
}

.integration-option li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
    padding-left: 1rem;
}

.integration-option li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Template Guidelines */
.template-guidelines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tag {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tag.utility {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.category-tag.authentication {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.category-tag.marketing {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.category-tag.service {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.template-example h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.template-preview {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
}

.template-header, .template-body, .template-footer {
    padding: 1rem;
}

.template-header {
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.template-body {
    color: var(--text-dark);
    line-height: 1.5;
}

.template-footer {
    background: var(--background-light);
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.template-buttons {
    padding: 1rem;
    background: var(--background-light);
    border-top: 1px solid var(--border-color);
}

.template-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

/* Interactive Features */
.interactive-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
}


.feature-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.feature-example {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
}

/* Sending Methods */
.sending-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.method-column h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Analytics Overview */
.analytics-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-card {
    background: var(--background-light);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
}

.metric-card .metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-card .metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Timeline Section */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-period {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Support Features */
.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-feature {
    text-align: center;
    padding: 2rem 1.5rem;
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.support-feature h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.support-feature p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 968px) {
    .step-details,
    .template-guidelines,
    .sending-methods,
    .analytics-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .integration-options {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-marker {
        flex-direction: column;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-period {
        align-self: center;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .highlight-item i {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 1.5rem;
    }
    
    .category-tags {
        justify-content: center;
    }
    
    .template-preview {
        max-width: 100%;
    }
    
    .support-features {
        grid-template-columns: 1fr;
    }
}

/* Improved Image Handling for Implementation Section */
.implementation-flow {
    position: relative;
    text-align: center;
    background: var(--background-light);
    border-radius: 12px;
    padding: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.implementation-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.implementation-image:hover {
    transform: scale(1.02);
}

/* Support Badge */
.support-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Fallback Content */
.implementation-fallback {
    text-align: center;
    padding: 2rem;
}

.fallback-content h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.process-steps-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-mini-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.step-mini-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    max-width: 80px;
}

.step-mini-arrow {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Image loading states */
.implementation-image.loading {
    opacity: 0.5;
    background: var(--background-light);
}

.implementation-image.error {
    display: none;
}

.implementation-image.error + .implementation-fallback {
    display: block;
}

/* Alternative: Use CSS-generated diagram if images don't load */
.implementation-diagram {
    display: none;
}

.implementation-flow:has(.implementation-image.error) .implementation-diagram {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .implementation-flow {
        padding: 15px;
        min-height: 250px;
    }
    
    .support-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .process-steps-mini {
        gap: 0.5rem;
    }
    
    .step-mini-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .implementation-flow {
        min-height: 200px;
        padding: 10px;
    }
    
    .process-steps-mini {
        flex-direction: column;
    }
    
    .step-mini-arrow {
        transform: rotate(0deg);
    }
}

/* Print styles */
@media print {
    .implementation-image {
        max-width: 80%;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .support-badge {
        background: #333 !important;
        color: white !important;
        box-shadow: none;
    }
}

/* SMS Services Page Styles */
.network-coverage {
    margin-top: 2rem;
}

.network-coverage h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.network-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.network-logo {
    background: var(--background-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.sms-demo {
    position: relative;
    text-align: center;
}

.delivery-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Service Tabs */
.services-grid-tabs {
    margin-top: 3rem;
}

.service-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 2px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.service-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.service-tab i {
    font-size: 1.2rem;
}

.service-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-pane {
    display: none;
    padding: 0;
}

.service-pane.active {
    display: block;
}

.pane-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

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

.pane-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.use-cases h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.use-case-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    text-align: center;
}

.use-case-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.use-case-item span {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pane-features h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pane-features ul {
    list-style: none;
}

.pane-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pane-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* API Section */
.api-tabs {
    margin-top: 3rem;
}

.api-tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.api-tab-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-dark);
}

.api-tab-btn:hover {
    border-color: var(--primary-color);
}

.api-tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.api-tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.api-tab-pane {
    display: none;
    padding: 3rem;
}

.api-tab-pane.active {
    display: block;
}

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

.api-description p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.api-endpoint {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.endpoint-method {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.endpoint-url {
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
    font-weight: 500;
}

.parameters-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.param-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.param-row:last-child {
    border-bottom: none;
}

.param-row.header {
    background: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.param-row > div {
    padding: 1rem;
    border-right: 1px solid var(--border-color);
}

.param-row > div:last-child {
    border-right: none;
}

.param-name {
    font-weight: 600;
    color: var(--text-dark);
}

.param-type {
    color: var(--primary-color);
    font-weight: 500;
}

.param-desc {
    color: var(--text-light);
}

.param-sample {
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.api-response h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.response-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.response-success, .response-error {
    padding: 1rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
}

.response-success {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #16a34a;
}

.response-error {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #dc2626;
}

/* SMPP Features */
.smpp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.smpp-feature {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.smpp-feature h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.smpp-feature p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 2FA Benefits */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Network Badges */
.network-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.network-badge {
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.price-desc {
    color: var(--text-light);
    margin: 0;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-features i.fa-check {
    color: var(--primary-color);
}

.pricing-features i.fa-times {
    color: #dc2626;
}

.btn-block {
    display: block;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.pricing-note p {
    margin: 0;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .pane-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .param-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .param-row.header {
        display: none;
    }
    
    .param-row > div {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0.75rem;
    }
    
    .param-row > div:last-child {
        border-bottom: none;
    }
    
    .param-name::before {
        content: "Parameter: ";
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .param-type::before {
        content: "Type: ";
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .param-desc::before {
        content: "Description: ";
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .param-sample::before {
        content: "Sample: ";
        font-weight: 600;
        color: var(--text-dark);
    }
}

@media (max-width: 768px) {
    .service-tabs {
        flex-direction: column;
    }
    
    .service-tab {
        justify-content: center;
    }
    
    .api-tab-buttons {
        flex-direction: column;
    }
    
    .api-tab-btn {
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pane-content {
        padding: 2rem 1.5rem;
    }
    
    .api-tab-pane {
        padding: 2rem 1.5rem;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .network-logos {
        justify-content: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}


/* API Section - Fixed Styling */
.api-section {
    position: relative;
    z-index: 1;
}

.api-tabs {
    margin-top: 3rem;
    position: relative;
}

.api-tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.api-tab-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 10;
}

.api-tab-btn:hover {
    border-color: var(--primary-color);
}

.api-tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.api-tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.api-tab-pane {
    display: none;
    padding: 3rem;
    position: relative;
}

.api-tab-pane.active {
    display: block;
}

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

.api-description p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.api-endpoint {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    z-index: 5;
}

.endpoint-method {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.endpoint-url {
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
    font-weight: 500;
    word-break: break-all;
}

/* API Parameters - Fixed Positioning */
.api-parameters-wrapper {
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.api-parameters-wrapper h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.api-parameters {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 5;
}

.parameters-table {
    width: 100%;
}

.param-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 5;
}

.param-row:last-child {
    border-bottom: none;
}

.param-row.header {
    background: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
    position: sticky;
    top: 0;
    z-index: 6;
}

.param-row > div {
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.param-row > div:last-child {
    border-right: none;
}

.param-name {
    font-weight: 600;
    color: var(--text-dark);
}

.param-type {
    color: var(--primary-color);
    font-weight: 500;
}

.param-desc {
    color: var(--text-light);
    line-height: 1.4;
}

.param-sample {
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.api-response {
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.api-response h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.response-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.response-success, .response-error {
    padding: 1rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 5;
}

.response-success {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #16a34a;
}

.response-error {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #dc2626;
}

/* Code Example */
.code-example {
    margin-top: 2rem;
    position: relative;
    z-index: 5;
}

.code-example h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.code-example pre {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 0;
}

.code-example code {
    color: #4ade80;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* SMPP Config */
.smpp-config {
    margin-top: 2rem;
}

.smpp-config h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.config-item {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.config-item strong {
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.config-item code {
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* 2FA Workflow */

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

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design for API Section */
@media (max-width: 968px) {
    .param-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .param-row.header {
        display: none;
    }
    
    .param-row > div {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0.5rem 1rem;
        display: block;
    }
    
    .param-row > div:last-child {
        border-bottom: 1px solid var(--border-color);
    }
    
    .param-row:last-child > div:last-child {
        border-bottom: none;
    }
    
    .param-name::before {
        content: "Parameter: ";
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .param-type::before {
        content: "Type: ";
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .param-desc::before {
        content: "Description: ";
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .param-sample::before {
        content: "Sample: ";
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .api-endpoint {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .api-tab-buttons {
        flex-direction: column;
    }
    
    .api-tab-btn {
        text-align: center;
    }
    
    .api-tab-pane {
        padding: 2rem 1.5rem;
    }
    
    .config-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .api-tab-pane {
        padding: 1.5rem 1rem;
    }
    
    .param-row > div {
        padding: 0.5rem;
    }
    
    .code-example pre {
        padding: 1rem;
    }
    
    .code-example code {
        font-size: 0.8rem;
    }
}


.api-section * {
    box-sizing: border-box;
}