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

:root {
    --navy: #0A192F;
    --navy-light: #16324F;
    --teal: #2EA3F2;
    --teal-dark: #1F8FD8;
    --teal-light: #00C6FF;
    --gradient-effect: #00C6FF;
    --white: #FFFFFF;
    --gray-light: #F5F7FA;
    --gray: #6B7280;
    --gray-dark: #374151;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.section-tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--teal);
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-code {
    font-family: 'Fira Code', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal);
}

.logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--navy);
}

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

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

.nav-menu a:hover {
    color: var(--teal);
}

.btn-nav {
    background: var(--teal);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
}

.btn-nav:hover {
    background: var(--teal-dark);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.14) 0%, var(--white) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 163, 242, 0.12);
    color: var(--teal);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--navy);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--navy-light);
    transition: all 0.3s;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Code Window */
.code-window {
    background: var(--navy);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.code-header {
    background: var(--gray-dark);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.code-title {
    margin-left: 0.5rem;
    color: var(--gray-light);
    font-family: monospace;
    font-size: 0.875rem;
}

.code-content {
    padding: 1.5rem;
    background: #1e1e2e;
}

.code-content pre {
    color: #cdd6f4;
    font-family: 'Fira Code', monospace;
    font-size: 0.875rem;
    overflow-x: auto;
}

.code-keyword { color: #cba6f7; }
.code-function { color: #89b4fa; }
.code-string { color: #a6e3a1; }

/* Packages Section */
.packages {
    padding: 80px 0;
    background: var(--white);
}

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

.package-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border: 2px solid var(--teal);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gray);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-badge {
    background: var(--teal);
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 1rem 0;
}

.currency {
    font-size: 1.25rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.package-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

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

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-features i {
    color: var(--teal);
    width: 20px;
}

.btn-package {
    display: block;
    text-align: center;
    background: var(--gray-light);
    color: var(--navy);
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-package:hover {
    background: var(--teal);
    color: var(--white);
}

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

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--gray-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step {
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

/* Support Section */
.support {
    padding: 80px 0;
    background: var(--white);
}

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

.support-card {
    background: var(--gray-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.support-card.featured {
    background: linear-gradient(135deg, var(--navy), var(--gradient-effect));
    color: var(--white);
}

.support-card.featured h3,
.support-card.featured .support-price {
    color: var(--white);
}

.support-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.support-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.support-card i {
    color: var(--teal);
}

.support-price {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0;
}

.support-price span {
    font-size: 1rem;
    font-weight: 400;
}

.btn-support {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-support-featured {
    background: var(--teal);
    color: var(--white);
}

.annual-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    color: var(--teal);
    font-weight: 500;
}

/* Add-ons */
.addons {
    padding: 80px 0;
    background: var(--gray-light);
}

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

.addon-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

.addon-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.addon-item i {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--gray-light);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.contact-details i {
    width: 24px;
    color: var(--teal);
}

.contact-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 163, 242, 0.12);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--teal);
    margin-top: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray);
    text-align: center;
}

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

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

.footer-brand .logo {
    height: 120px;
    width: auto;
    margin-bottom: 0.5rem;
    display: block;
    object-fit: contain;
}

.footer-brand .brand-code {
    color: var(--teal);
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

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

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

.social-icons a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.whatsapp-button i {
    color: white;
    font-size: 32px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--navy);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--navy);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Optional: Show on scroll effect */
.whatsapp-float.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* WhatsApp Modal Popup */
.whatsapp-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 999;
    overflow: hidden;
    transform: translateX(400px);
    transition: transform 0.4s ease;
}

.whatsapp-modal.show {
    transform: translateX(0);
}

.whatsapp-modal-header {
    background: #075E54;
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-modal-header i {
    font-size: 24px;
}

.whatsapp-modal-header h4 {
    margin: 0;
    font-size: 16px;
    color: white;
}

.whatsapp-modal-header p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.close-modal {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.whatsapp-modal-body {
    padding: 16px;
}

.whatsapp-modal-body p {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: var(--gray-dark);
}

.whatsapp-modal-body textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: none;
    margin-bottom: 12px;
}

.whatsapp-modal-body textarea:focus {
    outline: none;
    border-color: #25D366;
}

.whatsapp-send {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s;
}

.whatsapp-send:hover {
    background: #128C7E;
}

@media (max-width: 768px) {
    .whatsapp-modal {
        width: 280px;
        right: 20px;
        bottom: 90px;
    }
}
/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

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

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}
/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--gray-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

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

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray);
}