:root {
    --white: #ffffff;
    --orange: #ee612a;
    --black: #000000;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --medium-gray: #666666;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #d9531e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238, 97, 42, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-white:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
}

/* Terms & Conditions Page Styles */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.terms-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--orange);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.terms-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--medium-gray);
    position: relative;
    padding-left: 15px;
}

.terms-section li::before {
    content: '•';
    color: var(--orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-section a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: #d9531e;
    text-decoration: underline;
}

.terms-notice {
    background: rgba(238, 97, 42, 0.05);
    border: 1px solid rgba(238, 97, 42, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

.terms-notice p {
    margin: 0;
    font-size: 16px;
    color: var(--dark-gray);
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .terms-section h2 {
        font-size: 20px;
    }
    
    .terms-content {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .terms-section h2 {
        font-size: 18px;
    }
    
    .terms-notice {
        padding: 20px;
    }
}

/* Header Styles */
.main-header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(238, 97, 42, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    min-height: 80px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 14px;
    position: relative;
    padding: 0;
}

.footer-links ul li a::before {
    content: '▸';
    color: var(--orange);
    margin-right: 8px;
    font-size: 11px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}


/* Footer Policy Links Hover */
.footer-policies a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: var(--orange);
}

/* Social Links Hover Enhancement */
.social-link:hover {
    background-color: var(--orange);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(238, 97, 42, 0.4);
}

/* Contact Items Hover Enhancement */
.contact-item-compact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.contact-item-compact:hover .contact-detail {
    color: var(--orange);
}

.contact-item-compact:hover .contact-icon-compact {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons Hover Enhancement */
.footer-top .btn-primary:hover {
    background: #d9531e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(238, 97, 42, 0.4);
}

.footer-top .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Privacy Policy Page Styles */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.privacy-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--orange);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.privacy-section h3 {
    font-size: 18px;
    margin: 20px 0 15px 0;
    color: var(--dark-gray);
    font-weight: 600;
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--medium-gray);
    position: relative;
    padding-left: 15px;
}

.privacy-section li::before {
    content: '•';
    color: var(--orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-section a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #d9531e;
    text-decoration: underline;
}

.privacy-notice {
    background: rgba(238, 97, 42, 0.05);
    border: 1px solid rgba(238, 97, 42, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

.privacy-notice p {
    margin: 0;
    font-size: 16px;
    color: var(--dark-gray);
}

.privacy-notice a {
    color: var(--orange);
    font-weight: 500;
}

/* Refund Policy Page Styles */
.refund-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.refund-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.refund-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--orange);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.refund-section h3 {
    font-size: 18px;
    margin: 20px 0 15px 0;
    color: var(--dark-gray);
    font-weight: 600;
}

.refund-section h4 {
    font-size: 16px;
    margin: 15px 0 10px 0;
    color: var(--dark-gray);
    font-weight: 600;
}

.refund-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.refund-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.refund-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--medium-gray);
    position: relative;
    padding-left: 15px;
}

.refund-section li::before {
    content: '•';
    color: var(--orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.refund-section a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.refund-section a:hover {
    color: #d9531e;
    text-decoration: underline;
}

.refund-section strong {
    color: var(--orange);
    font-weight: 600;
}

/* Refund Notice Styles */
.refund-notice {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.notice-icon {
    font-size: 24px;
    color: #2196F3;
    margin-top: 5px;
}

.notice-content h3 {
    margin: 0 0 10px 0;
    color: #1976D2;
    font-size: 20px;
}

.notice-content p {
    margin: 0;
    line-height: 1.6;
}

/* Refund Reminder Styles */
.refund-reminder {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.reminder-icon {
    font-size: 24px;
    color: #FF9800;
    margin-top: 5px;
}

.reminder-content h4 {
    margin: 0 0 10px 0;
    color: #F57C00;
    font-size: 18px;
}

.reminder-content p {
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for Refund Page */
@media (max-width: 768px) {
    .refund-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .refund-section h2 {
        font-size: 20px;
    }
    
    .refund-section h3 {
        font-size: 16px;
    }
    
    .refund-content {
        padding: 10px 0;
    }
    
    .refund-notice,
    .refund-reminder {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .notice-icon,
    .reminder-icon {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .refund-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .refund-section h2 {
        font-size: 18px;
    }
    
    .refund-section h3 {
        font-size: 15px;
    }
    
    .refund-notice,
    .refund-reminder {
        padding: 15px;
    }
    
    .refund-section ul {
        padding-left: 15px;
    }
}

/* Responsive Design for Privacy Page */
@media (max-width: 768px) {
    .privacy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
    
    .privacy-section h3 {
        font-size: 16px;
    }
    
    .privacy-content {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .privacy-section h2 {
        font-size: 18px;
    }
    
    .privacy-section h3 {
        font-size: 15px;
    }
    
    .privacy-notice {
        padding: 20px;
    }
    
    .privacy-section ul {
        padding-left: 15px;
    }
}

/* Logo Styles */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

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

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    font-weight: 500;
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
}

.nav-link:not(.nav-btn):hover {
    color: var(--orange);
    background: rgba(238, 97, 42, 0.05);
    transform: translateY(-1px);
}

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

.nav-link:not(.nav-btn):hover::after {
    width: 20px;
}

/* Navigation Buttons */
.nav-btn {
    padding: 10px 20px !important;
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.nav-btn.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 97, 42, 0.3);
}

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

.nav-btn.btn-primary:hover {
    background: #d9531e;
    border-color: #d9531e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 97, 42, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--white);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.mobile-menu-btn:hover {
    background: #d9531e;
    transform: scale(1.05);
}

/* Body Padding to Prevent Overlap */
body {
    padding-top: 80px;
}

/* Active State for Current Page */
.nav-link.active {
    color: var(--orange);
    font-weight: 600;
}

.nav-link.active::after {
    width: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 10px 0;
        min-height: 70px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .nav-btn {
        padding: 8px 16px !important;
        font-size: 13px;
    }
    
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid #eee;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 15px 20px;
        justify-content: center;
        border-radius: 10px;
        font-size: 16px;
        border: 1px solid #f0f0f0;
    }
    
    .nav-btn {
        margin: 10px 0 0 0 !important;
        width: 100%;
        justify-content: center;
        padding: 12px 20px !important;
    }
    
    .nav-link:not(.nav-btn)::after {
        display: none;
    }
    
    body {
        padding-top: 70px;
    }
    
    .header-container {
        min-height: 70px;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 0;
        min-height: 65px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    body {
        padding-top: 65px;
    }
    
    .main-nav {
        top: 65px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header Scroll Effect */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* RCS Page Specific Styles */
.rcs-header {
    background: linear-gradient(135deg, rgba(238,97,42,0.1) 0%, rgba(255,255,255,1) 100%);
    color: var(--black);
    padding: 150px 0 80px;
    text-align: center;
}

.rcs-header .header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.rcs-header .header-content p {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 25px;
}

.header-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(238, 97, 42, 0.1);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* RCS Introduction */
.rcs-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--black);
}

.intro-text p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.intro-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    font-weight: 500;
}

.feature-item i {
    color: var(--orange);
}

.rcs-mockup {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mockup-screen {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.message {
    margin-bottom: 15px;
}

.message.received .message-content {
    background: #f1f3f4;
    padding: 20px;
    border-radius: 15px;
    max-width: 280px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--orange);
    font-weight: 600;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.quick-replies button {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.quick-replies button:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* RCS Features Section */
.rcs-features-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.rcs-feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.rcs-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.rcs-feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(238, 97, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--orange);
    font-size: 30px;
}

.rcs-feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.rcs-feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
}

.comparison-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

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

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.comparison-row:nth-child(even) {
    background: var(--light-gray);
}

.feature-col {
    font-weight: 600;
    color: var(--dark-gray);
}

.rcs-col, .sms-col {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.success {
    color: #28a745;
}

.danger {
    color: #dc3545;
}

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

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--black);
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card li {
    padding: 8px 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 20px;
}

.use-case-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 600;
}

/* Integration Section */
.integration-section {
    padding: 80px 0;
}

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

.integration-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--black);
}

.integration-text p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.integration-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.integration-item i {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.integration-item h4 {
    margin-bottom: 5px;
    color: var(--black);
}

.integration-item p {
    margin: 0;
    font-size: 14px;
    color: var(--medium-gray);
}

.integration-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.platform-mockup {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.mockup-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.mockup-tabs .tab {
    padding: 10px 20px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mockup-tabs .tab.active {
    background: var(--orange);
    color: var(--white);
}

.channel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 5px;
}

.stat .label {
    font-size: 12px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--black);
}

.faq-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* RCS CTA Section */
.rcs-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange) 0%, #d9531e 100%);
    color: var(--white);
    text-align: center;
}

.rcs-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.rcs-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

/* Responsive Design for RCS Page */
@media (max-width: 1024px) {
    .rcs-intro-content,
    .integration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rcs-header {
        padding: 120px 0 60px;
    }
    
    .rcs-header .header-content h1 {
        font-size: 36px;
    }
    
    .rcs-header .header-content p {
        font-size: 18px;
    }
    
    .intro-text h2,
    .integration-text h2 {
        font-size: 28px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .rcs-features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-stats {
        grid-template-columns: 1fr;
    }
    
    .integration-cta,
    .rcs-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Onboarding Timeline Section */
.onboarding-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.onboarding-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(238, 97, 42, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.timeline-content p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.timeline-content li {
    padding: 8px 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 600;
}

.onboarding-requirements {
    display: flex;
    justify-content: center;
}

.requirements-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    width: 100%;
}

.requirements-icon {
    width: 70px;
    height: 70px;
    background: rgba(238, 97, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 24px;
    flex-shrink: 0;
}

.requirements-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.requirements-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Additional Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-question h4 {
    font-size: 18px;
    margin: 0;
    color: var(--black);
    font-weight: 600;
}

.faq-toggle {
    color: var(--orange);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-answer.active {
    padding: 0 25px 25px;
    max-height: 500px;
    border-top: 1px solid #e9ecef;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .timeline-icon {
        align-self: center;
    }
    
    .requirements-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        padding: 20px;
    }
    
    .requirements-card {
        padding: 20px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer.active {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .rcs-header .header-content h1 {
        font-size: 28px;
    }
    
    .header-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-features {
        flex-direction: column;
    }
    
    .rcs-cta-section h2 {
        font-size: 28px;
    }
    
    .rcs-cta-section p {
        font-size: 16px;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(238,97,42,0.1) 0%, rgba(255,255,255,1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238,97,42,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -250px;
    right: -250px;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    width: 50%;
}

.hero-image {
    width: 45%;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

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

.tagline {
    display: inline-block;
    background-color: rgba(238, 97, 42, 0.1);
    color: var(--orange);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--medium-gray);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Features Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--black);
}

.section-title p {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.features {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

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

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(238, 97, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--orange);
    font-size: 30px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.feature-card p {
    color: var(--medium-gray);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 5px;
}

.pricing-period {
    color: var(--medium-gray);
    font-size: 14px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--medium-gray);
}

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

.pricing-features li i {
    color: var(--orange);
    margin-right: 10px;
}

.pricing-button {
    width: 100%;
}

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

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.footer-top {
    background: linear-gradient(135deg, var(--orange) 0%, #d9531e 100%);
    padding: 10px 0;
    text-align: center;
}

.footer-cta h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

/* Footer Main */
.footer-main {
    background-color: #1a1a1a;
    padding: 80px 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Footer About */
.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-about .footer-logo img {
    height: 60px;
    width: auto;
}

.footer-description {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--orange);
}

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

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

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-links ul li a::before {
    content: '▸';
    color: var(--orange);
    margin-right: 8px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

/* Onboarding Section */
.onboarding-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

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

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

.onboarding-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--black);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.onboarding-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.step-duration {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.onboarding-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.onboarding-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.onboarding-card li {
    padding: 8px 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.onboarding-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 600;
}

.eligibility-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--orange);
    max-width: 800px;
    margin: 0 auto;
}

.eligibility-icon {
    width: 50px;
    height: 50px;
    background: rgba(238, 97, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
}

.eligibility-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--black);
}

.eligibility-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* FAQ Styles - Essential styles kept */
.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--orange);
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

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

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

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Compact Contact Grid */
.contact-grid-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contact-item-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 60px;
}

.contact-item-compact:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.contact-icon-compact {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item-compact:hover .contact-icon-compact {
    transform: scale(1.1);
}

.contact-icon-compact.email {
    background: linear-gradient(135deg, #ee612a, #d9531e);
}

.contact-icon-compact.phone {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.contact-icon-compact.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon-compact.location {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.contact-method {
    color: #aaa;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-detail {
    color: white;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #111;
    padding: 25px 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.company-legal {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.footer-policies {
    display: flex;
    gap: 25px;
}

.footer-policies a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: var(--orange);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0;
    }
    
    .footer-cta h3 {
        font-size: 26px;
    }
    
    .footer-cta p {
        font-size: 16px;
    }
    
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-policies {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-whatsapp,
    .btn-primary {
        width: 200px;
        justify-content: center;
    }
    
    .contact-item-compact {
        min-height: 55px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .footer-cta h3 {
        font-size: 22px;
    }
    
    .footer-cta p {
        font-size: 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-links ul li a {
        font-size: 13px;
    }
    
    .contact-detail {
        font-size: 12px;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    .footer-policies a {
        font-size: 13px;
    }
}
/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(238, 97, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details span:first-child {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-details a,
.contact-details span:last-child {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.contact-details a:hover {
    color: var(--orange);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #111;
    padding: 25px 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.company-legal {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.footer-policies {
    display: flex;
    gap: 25px;
}

.footer-policies a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: var(--orange);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0;
    }
    
    .footer-cta h3 {
        font-size: 28px;
    }
    
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-policies {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp,
    .btn-primary {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .footer-cta h3 {
        font-size: 24px;
    }
    
    .footer-cta p {
        font-size: 16px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        align-self: center;
    }
}

/* Enhanced Contact Section */
.footer-contact {
    position: relative;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 97, 42, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(238, 97, 42, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-card-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange) 0%, #d9531e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(238, 97, 42, 0.4);
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-value {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--orange);
}

.contact-arrow {
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.contact-card:hover .contact-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--orange);
}

/* Quick Action Buttons */
.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.email-btn {
    background: linear-gradient(135deg, var(--orange) 0%, #d9531e 100%);
    color: var(--white);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 97, 42, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-card-inner {
        padding: 12px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .contact-value {
        font-size: 13px;
    }
    
    .contact-actions {
        grid-template-columns: 1fr;
    }
    
    .action-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-card-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-arrow {
        display: none;
    }
}

/* Animation for contact cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

/* Compact Contact Grid */
.contact-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-item-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-compact:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.contact-icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-icon-compact.email {
    background: linear-gradient(135deg, #ee612a, #d9531e);
}

.contact-icon-compact.phone {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.contact-icon-compact.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon-compact.location {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-method {
    color: #ccc;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-detail {
    color: white;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .contact-grid-compact {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-item-compact {
        padding: 12px;
    }
}

/* Page Styles */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(238,97,42,0.1) 0%, rgba(255,255,255,1) 100%);
    text-align: center;
}

.page-content {
    padding: 80px 0;
}

/* FAQ Styles */
.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--orange);
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

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

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

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, rgba(238, 97, 42, 0.9) 0%, rgba(217, 83, 30, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ee612a" width="1200" height="800"/><circle fill="%23d9531e" cx="800" cy="200" r="100" opacity="0.3"/><circle fill="%23d9531e" cx="400" cy="600" r="150" opacity="0.2"/></svg>');
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.header-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards Section */
.contact-cards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card-highlight {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-card-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, #d9531e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 30px;
}

.contact-card-highlight:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-card-highlight:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-card-highlight h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--black);
}

.contact-card-highlight p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

/* Modern Contact Grid */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Modern */
.contact-info-modern {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.info-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--black);
}

.info-header p {
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-details-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item-modern:hover {
    background: rgba(238, 97, 42, 0.05);
    transform: translateX(5px);
}

.item-icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--black);
}

.item-content p {
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

.social-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--black);
}

.social-links-modern {
    display: flex;
    gap: 12px;
}

.social-link-modern {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-modern:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form Modern */
.contact-form-modern {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.form-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--black);
}

.form-header p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.contact-form-elegant {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-modern {
    position: relative;
}

.form-group-modern.full-width {
    grid-column: 1 / -1;
}

.form-group-modern label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

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

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(238, 97, 42, 0.1);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    font-size: 16px;
    transition: color 0.3s ease;
}

.textarea-icon {
    top: 25px;
    transform: none;
}

.form-group-modern input:focus + .input-icon,
.form-group-modern textarea:focus + .textarea-icon {
    color: var(--orange);
}

.btn-submit {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--black);
}

.section-header p {
    color: var(--medium-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.map-content i {
    font-size: 60px;
    color: var(--orange);
    margin-bottom: 20px;
}

.map-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--black);
}

.map-content p {
    color: var(--medium-gray);
    margin-bottom: 25px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cards-section {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 80px 0 60px;
    }
    
    .header-content h1 {
        font-size: 36px;
    }
    
    .header-content p {
        font-size: 18px;
    }
    
    .contact-cards-section {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .contact-card-highlight {
        padding: 30px 25px;
    }
    
    .contact-info-modern,
    .contact-form-modern {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-placeholder {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 60px 0 40px;
    }
    
    .header-content h1 {
        font-size: 28px;
    }
    
    .contact-item-modern {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .item-icon {
        align-self: center;
    }
    
    .social-links-modern {
        justify-content: center;
    }
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--black);
}

.contact-detail {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-detail i {
    color: var(--orange);
    margin-right: 15px;
    font-size: 20px;
    margin-top: 5px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        width: 100%;
    }
    
    .hero-text {
        margin-bottom: 50px;
        text-align: center;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* Affiliate Hero Section - Matching Main Hero */
.affiliate-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(238,97,42,0.1) 0%, rgba(255,255,255,1) 100%);
    position: relative;
    overflow: hidden;
}

.affiliate-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238,97,42,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -250px;
    right: -250px;
    z-index: 0;
}

.affiliate-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.affiliate-hero .hero-text {
    width: 50%;
}

.affiliate-hero .hero-image {
    width: 45%;
    text-align: center;
}

.affiliate-hero .hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

.affiliate-hero .tagline {
    display: inline-block;
    background-color: rgba(238, 97, 42, 0.1);
    color: var(--orange);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.affiliate-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.affiliate-hero .highlight {
    color: var(--orange);
}

.affiliate-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--medium-gray);
}

.affiliate-hero .hero-buttons {
    display: flex;
    gap: 15px;
}

.affiliate-hero .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(238, 97, 42, 0.1);
}

.affiliate-hero .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(238, 97, 42, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(238, 97, 42, 0.1);
    transition: all 0.3s ease;
}

.affiliate-hero .stat-item:hover {
    background: rgba(238, 97, 42, 0.1);
    transform: translateY(-2px);
}

.affiliate-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--orange);
}

.affiliate-hero .stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .affiliate-hero .hero-content {
        flex-direction: column;
    }
    
    .affiliate-hero .hero-text, 
    .affiliate-hero .hero-image {
        width: 100%;
    }
    
    .affiliate-hero .hero-text {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .affiliate-hero h1 {
        font-size: 36px;
    }
    
    .affiliate-hero .hero-buttons {
        justify-content: center;
    }
    
    .affiliate-hero .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        padding: 30px 20px;
    }
    
    .affiliate-hero .stat-item {
        flex: 1;
        margin: 0 10px;
        padding: 15px 10px;
    }
    
    .affiliate-hero .stat-number {
        font-size: 2rem;
    }
    
    .affiliate-hero .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .affiliate-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .affiliate-hero .stat-item {
        margin: 0;
    }
    
    .affiliate-hero h1 {
        font-size: 28px;
    }
    
    .affiliate-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Revenue Calculator */
.revenue-calculator {
    padding: 80px 0;
    background: #f8f9fa;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calculator-inputs {
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.slider {
    width: 100%;
    margin: 15px 0;
}

.plan-selector {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-card {
    background: linear-gradient(135deg, #ff6b35, #ff8e35);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.result-amount {
    font-size: 1.8rem;
    font-weight: 700;
}

.calculator-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-style: italic;
}

/* Affiliate Benefits */
.affiliate-benefits {
    padding: 80px 0;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Affiliate CTA */
.affiliate-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #ff8e35);
    color: white;
    text-align: center;
}

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

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Trusted Globally Section */
.trusted-globally {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

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

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.stat-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.stat-icon .fas {
    font-size: 2.5rem;
}