/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
}

/* Base Styles */
body {
    font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
    background: #f8fafd;
    color: #1e293b;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Container */
.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.sigma-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000 !important;
    transition: all 0.3s ease;
    background: transparent !important;
    padding: 1.5rem 0;
}

.sigma-header-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 170, 255, 0.15);
}

/* Header Layout */
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    text-decoration: none;
    letter-spacing: 0.08em;
}

.header-logo-img {
    height: 2rem;
    object-fit: contain;
}

.header-logo-text {
    margin-left: 0.5rem;
    color: #ff7b89;
}

/* Brand Text */
.logo-text {
    font-size: 1.3rem;
    color: #ff7b89 !important;
    white-space: nowrap;
}

/* Desktop Navigation */
.header-nav-desktop {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    
    .logo-text {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .header-nav-desktop {
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }
}

/* Floating container */
.ss-float-contact {
  position: fixed;
  bottom: 50px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 9999;
}

/* Shared button styles */
.ss-float-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.25);
  transition: all 0.35s ease;
  animation: ss-pulse 2s infinite;
}

/* WhatsApp */
.ss-whatsapp {
  background: linear-gradient(135deg, #00c9a7, #00b38f);
}

/* Call */
.ss-call {
  background: linear-gradient(135deg, #ff9a9e, #ff6b6b);
}

/* Hover effect */
.ss-float-contact a:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.35);
}

/* Pulse animation */
@keyframes ss-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 123, 137, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(255, 123, 137, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 123, 137, 0); }
}

/* 📱 Mobile view */
@media (max-width: 768px) {
  .ss-float-contact {
    top: auto;
    bottom: 20px;
    right: 15px;
  }

  .ss-float-contact a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

/* Navigation Links */
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    color: #5a6a7c;
    text-decoration: none;
}

.nav-link-active {
    color: #ff7b89;
}

.nav-link:hover {
    color: #ff7b89;
}

.nav-link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(to right, #ff7b89, #00c9a7);
    transition: width 0.3s ease;
    width: 0;
}

.nav-link:hover .nav-link-underline {
    width: 100%;
}

.nav-link-active .nav-link-underline {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    color: #5a6a7c;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-dropdown-btn:hover {
    color: #ff7b89;
}

.nav-dropdown-chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 14rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(255, 123, 137, 0.15), 0 4px 6px -2px rgba(0, 201, 167, 0.1);
    border: 1px solid #ffe5e7;
    padding: 0.5rem 0;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #5a6a7c;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    color: #ff7b89;
    background: rgba(255, 231, 234, 0.5);
}

.dropdown-divider {
    border-top: 1px solid #ffe5e7;
    margin: 0.5rem 0;
}

/* CTA Button */
.header-cta-desktop {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header-cta-desktop {
        display: flex;
    }
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #ff7b89, #00c9a7);
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(255, 123, 137, 0.2), 0 2px 4px -1px rgba(0, 201, 167, 0.1);
    transition: all 0.3s ease;
    transform: scale(1);
}

.cta-button:hover {
    background: linear-gradient(to right, #ff939f, #00e0bb);
    transform: scale(1.05);
}

.cta-icon {
    width: 1rem;
    height: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    color: #ff7b89;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: rgba(255, 123, 137, 0.1);
}

.mobile-menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
}

.mobile-menu-overlay-active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    width: 20rem;
    background: #ffffff;
    box-shadow: -10px 0 15px -3px rgba(255, 123, 137, 0.15), -4px 0 6px -2px rgba(0, 201, 167, 0.1);
    padding: 1.5rem;
    overflow-y: auto;
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Close Button */
.mobile-menu-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: #a0b3c9;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-close:hover {
    color: #ff7b89;
}

.close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Logo */
.mobile-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.mobile-logo-img {
    height: 2rem;
    object-fit: contain;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #5a6a7c;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ff7b89;
    background: rgba(255, 231, 234, 0.5);
}

.mobile-nav-link-active {
    background: linear-gradient(to right, rgba(255, 123, 137, 0.2), rgba(0, 201, 167, 0.1));
    color: #ff7b89;
}

/* Mobile Dropdown */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #5a6a7c;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.mobile-dropdown-toggle:hover {
    color: #ff7b89;
    background: rgba(255, 231, 234, 0.5);
}

.mobile-dropdown-chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.mobile-dropdown-content {
    margin-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.mobile-dropdown-content-active {
    max-height: 500px;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 16px !important;
    font-weight: 500  !important;
    color: #7f8fa3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-dropdown-link:hover {
    color: #ff7b89;
}

.mobile-dropdown-active .mobile-dropdown-chevron {
    transform: rotate(180deg);
}

/* Mobile CTA */
.mobile-cta-container {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ffe5e7;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #ff7b89, #00c9a7);
    color: white;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(255, 123, 137, 0.2), 0 2px 4px -1px rgba(0, 201, 167, 0.1);
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    background: linear-gradient(to right, #ff939f, #00e0bb);
}

.mobile-cta-text {
    text-align: center;
    color: #7f8fa3;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Main Content */
.main-content {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.content-title {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

.content-description {
    color: #5a6a7c;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid #ffe5e7;
    box-shadow: 0 4px 10px rgba(255, 123, 137, 0.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #ff7b89;
}

.feature-description {
    color: #5a6a7c;
}

.feature-title-purple {
    color: #ff7b89;
}

.feature-title-blue {
    color: #00c9a7;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f5fa;
}

::-webkit-scrollbar-thumb {
    background: #ff7b89;
    border-radius: 4px;
}

/* Animation for elements */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-fade-in {
    animation: footerFadeIn 0.6s ease-out forwards;
}

/* Footer Styles */
.footer-container {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    border-top: 1px solid rgba(255, 123, 137, 0.2);
    background: #ffffff;
}

.footer-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #ffffff, #fff5f7);
}

.footer-gradient-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.footer-gradient-circle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: #ff7b89;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(150px);
}

.footer-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* Company Info */
.footer-company-info {
    animation-delay: 0.1s;
}

.footer-logo-container {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 80px;
    width: 180px;
}

.footer-company-description {
    color: #5a6a7c;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-icon {
    color: #a0b3c9;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: #ff7b89;
}

/* Customer Care */
.footer-customer-care {
    animation-delay: 0.2s;
}

.footer-section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-section-icon {
    margin-right: 0.75rem;
    color: #ff7b89;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #5a6a7c;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #00c9a7;
}

.footer-contact-icon {
    margin-top: 0.25rem;
    color: #00c9a7;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.1);
}

.footer-phone-number {
    font-size: 1.125rem;
    font-weight: 600;
    display: block;
    color: inherit;
    text-decoration: none;
}

.footer-contact-time {
    font-size: 0.875rem;
    color: #9fadc2;
}

.footer-contact-text {
    font-size: 1.125rem;
}

/* Quick Links */
.footer-quick-links {
    animation-delay: 0.3s;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #5a6a7c;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link-item:hover {
    color: #ff7b89;
}

.footer-link-arrow {
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ff7b89;
}

.footer-link-item:hover .footer-link-arrow {
    opacity: 1;
}

.footer-link-text {
    font-size: 1.125rem;
}

/* Legal */
.footer-legal {
    animation-delay: 0.4s;
}

.footer-legal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-legal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #5a6a7c;
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.footer-legal-item:hover {
    color: #ff7b89;
}

.footer-legal-icon {
    transition: transform 0.3s ease;
    color: #00c9a7;
}

.footer-legal-item:hover .footer-legal-icon {
    transform: scale(1.1);
}

.footer-legal-text {
    font-size: 1.125rem;
}

.footer-legal-item-privacy {
    color: #ff7b89;
}

.footer-legal-item-privacy:hover {
    color: #ff939f;
}

/* App Badges */
.footer-app-section {
    margin-top: 2rem;
}

.footer-app-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .footer-app-badges {
        flex-direction: row;
    }
}

.footer-app-badge {
    background: #fff5f7;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #ffe5e7;
}

.footer-app-badge:hover {
    background: #ffe5e7;
}

.footer-app-icon {
    font-size: 1.5rem;
}

.footer-app-icon-play {
    color: #00c9a7;
}

.footer-app-icon-apple {
    color: #ff7b89;
}

.footer-app-label {
    font-size: 0.75rem;
    color: #7f8fa3;
}

.footer-app-name {
    color: #1e293b;
    font-weight: 600;
}

/* Bottom Bar */
.footer-bottom-bar {
    padding-top: 2rem;
    border-top: 1px solid #ffe5e7;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-copyright {
    color: #5a6a7c;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: left;
    }
}

.footer-copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .footer-copyright-content {
        flex-direction: row;
        gap: 0.5rem;
    }
}

.footer-security-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-security-info {
        flex-direction: row;
    }
}

.footer-encryption {
    display: flex;
    align-items: center;
    color: #7f8fa3;
    font-size: 0.875rem;
}

.footer-encryption-icon {
    margin-right: 0.5rem;
    color: #00c9a7;
}

.footer-divider {
    display: none;
    height: 1rem;
    width: 1px;
    background: #ffe5e7;
}

@media (min-width: 768px) {
    .footer-divider {
        display: block;
    }
}

.footer-risk-warning {
    color: #7f8fa3;
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-risk-warning {
        text-align: right;
    }
}

.footer-warning-icon {
    color: #ff7b89;
    margin-right: 0.25rem;
}

/* Regulatory Info */
.footer-regulatory-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ffe5e7;
}

.footer-regulatory-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-regulatory-content {
        flex-direction: row;
    }
}

.footer-badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-badge {
    background: #fff5f7;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: #5a6a7c;
    border: 1px solid #ffe5e7;
}

.footer-badge-icon {
    margin-right: 0.25rem;
}

.footer-badge-certified {
    color: #ff7b89;
}

.footer-badge-compliant {
    color: #00c9a7;
}

.footer-cin-number {
    color: #7f8fa3;
    font-size: 0.75rem;
    text-align: center;
}

/* Hover effects */
.footer-hover-item {
    transition: transform 0.3s ease;
}

.footer-hover-item:hover {
    transform: translateX(5px);
}