/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-svg {
    height: 60px;
    width: auto;
    max-width: 60px;
    border-radius: 12px;
    object-fit: contain;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    filter: brightness(1.05) contrast(1.1);
}

.logo-svg:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    filter: brightness(1.1) contrast(1.15);
}

.logo-text {
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    margin: 0;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF9933;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #FF9933, #138808);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    color: #2c3e50;
    padding: 130px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

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

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.brand-name {
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.1em;
    letter-spacing: -1px;
}

.tagline-separator {
    color: #2c3e50;
    font-weight: 600;
    margin: 0 0.2em;
}

.tagline {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.85em;
    opacity: 0.9;
}

.patriotic-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #FF9933, #000080, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.platform-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-width: 200px;
}

@media (max-width: 768px) {
    .platform-container {
        gap: 2rem;
    }
    
    .platform-item {
        gap: 1rem;
        min-width: 180px;
    }
}

.platform-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.whatsapp-btn {
    background: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.telegram-btn {
    background: #0088cc;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.telegram-btn:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.qr-instruction {
    text-align: center;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
}

.qr-section {
    text-align: center;
    width: 100%;
}

.qr-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.qr-placeholder {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    min-width: 160px;
}

.whatsapp-qr {
    border: 3px solid #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.telegram-qr {
    border: 3px solid #0088cc;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.qr-placeholder:hover {
    transform: scale(1.05);
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.qr-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.qr-image:hover {
    transform: scale(1.1);
}

.qr-placeholder p {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.whatsapp-qr p {
    color: #25d366;
}

.telegram-qr p {
    color: #0088cc;
}



/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,153,51,0.05) 0%, rgba(255,255,255,1) 50%, rgba(19,136,8,0.05) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
}

.about h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Crisis Section */
.crisis-section {
    margin-top: 3rem;
    text-align: center;
}

.crisis-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.crisis-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crisis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF9933, #138808);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
}

.crisis-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.crisis-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness for Crisis Section */
@media (max-width: 768px) {
    .crisis-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .crisis-section h3 {
        font-size: 2rem;
    }
    
    .crisis-card {
        padding: 1.5rem;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
    position: relative;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
}

.features h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.feature-card i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,153,51,0.05) 0%, rgba(255,255,255,1) 50%, rgba(19,136,8,0.05) 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
}

.how-it-works h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Platform Tabs */
.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.tab-button:hover {
    border-color: #FF9933;
    color: #FF9933;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.2);
}

.tab-button.active {
    background: linear-gradient(45deg, #FF9933, #138808);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

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

/* Steps Container */
.steps-container {
    transition: all 0.3s ease;
}

.steps-container.hidden {
    display: none;
}

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

.step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF9933, #138808);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
}

.step-number::after {
    content: '☸';
    position: absolute;
    font-size: 0.8rem;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.step p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step ul {
    text-align: left;
    margin: 1rem 0;
    padding-left: 1rem;
}

.step li {
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Disclaimer Section */
.disclaimer {
    padding: 60px 0;
    background: #fff3cd;
    border-top: 4px solid #ffc107;
    border-bottom: 4px solid #ffc107;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer h2 {
    color: #856404;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer h2 i {
    color: #ffc107;
}

.disclaimer p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #856404;
}

.disclaimer ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.disclaimer li {
    margin-bottom: 1rem;
    color: #856404;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(45deg, #FF9933, #138808);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
}

.faq-question:hover {
    background: linear-gradient(45deg, #e6851a, #0f6b06);
}

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

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

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    color: #2c3e50;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Legal Pages Styles */
.legal-content {
    padding-top: 130px;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    color: #2c3e50;
    position: relative;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.legal-content > .container {
    position: relative;
    z-index: 2;
}

.legal-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    border: 1px solid rgba(255, 153, 51, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.legal-section h1 {
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid rgba(255, 153, 51, 0.3);
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.legal-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 25px 0 10px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2c3e50;
    opacity: 0.9;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #2c3e50;
    opacity: 0.9;
}

.legal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.legal-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 153, 51, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 153, 51, 0.3);
}

.legal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.legal-card p {
    margin-bottom: 20px;
    color: #2c3e50;
    opacity: 0.8;
}

.important-notice {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.important-notice h2 {
    background: linear-gradient(45deg, #FF9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    border: none;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.warning-box {
    background: rgba(255, 153, 51, 0.1);
    border: 2px solid #FF9933;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.warning-box p {
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
}

.nav-link.active {
    color: #FF9933 !important;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .legal-content {
        padding-top: 100px;
    }
    
    .legal-section {
        padding: 25px;
        margin: 20px 0;
    }
    
    .legal-section h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-card {
        padding: 20px;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .logo-svg {
        height: 50px;
        max-width: 50px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h3 {
        font-size: 1.1rem;
    }

    .cta-section {
        flex-direction: column;
        gap: 2rem;
    }

    .platform-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .qr-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }
    
    .platform-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-button {
        width: 200px;
        justify-content: center;
    }

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

@media screen and (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

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

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Chat Widget - Toggle Button */
#chat-toggle-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px; /* Reduced from 120px for better proportions */
    height: 100px; /* Reduced from 120px for better proportions */
    background-color: #138808; /* Green */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1002; /* Ensure it's above most content */
}

#chat-toggle-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#chat-toggle-button img {
    width: 85%; /* increased from 80% */
    height: 85%; /* increased from 80% */
    object-fit: contain;
    border-radius: 50%;
}

/* Chat Widget - Main Container */
#chat-widget-container {
    position: fixed;
    bottom: 170px; /* Reduced to provide more space */
    right: 20px; /* Slightly closer to edge for more space */
    width: 400px; /* Default desktop width */
    max-width: calc(100vw - 40px); /* Responsive width with margins */
    height: 500px; /* Default desktop height */
    max-height: calc(100vh - 200px); /* More conservative max height */
    min-height: 350px; /* Minimum height for usability */
    min-width: 300px; /* Minimum width for usability */
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none; /* Initially hidden, controlled by JS */
    flex-direction: column; /* Stack header, body */
    overflow: hidden; /* Prevent content spill */
    z-index: 1003; /* Ensure it's above the toggle button and other UI */
    border: 2px solid #FF9933; /* Saffron border */
    /* Ensure it never goes off-screen */
    top: auto;
    left: auto;
    /* Smooth transitions for resizing */
    transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    /* Enable user resizing */
    resize: both;
    overflow: auto;
}

/* Chat Widget - Resize Handles */
#chat-widget-container.resizable {
    resize: none; /* Disable default browser resize */
}

.chat-resize-handle {
    position: absolute;
    background: transparent;
    z-index: 10;
}

.chat-resize-handle:hover {
    background: rgba(255, 153, 51, 0.3);
}

/* Corner resize handles */
.resize-handle-nw {
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    cursor: nw-resize;
    border-top-left-radius: 15px;
}

.resize-handle-ne {
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    cursor: ne-resize;
    border-top-right-radius: 15px;
}

.resize-handle-sw {
    bottom: 0;
    left: 0;
    width: 15px;
    height: 15px;
    cursor: sw-resize;
    border-bottom-left-radius: 15px;
}

.resize-handle-se {
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    cursor: se-resize;
    border-bottom-right-radius: 15px;
}

/* Edge resize handles */
.resize-handle-n {
    top: 0;
    left: 15px;
    right: 15px;
    height: 5px;
    cursor: n-resize;
}

.resize-handle-s {
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 5px;
    cursor: s-resize;
}

.resize-handle-w {
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 5px;
    cursor: w-resize;
}

.resize-handle-e {
    right: 0;
    top: 15px;
    bottom: 15px;
    width: 5px;
    cursor: e-resize;
}

/* Chat Widget - Fullscreen Mode */
#chat-widget-container.fullscreen {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    border-radius: 0 !important;
    z-index: 9999;
}

/* Chat Widget - Minimized State */
#chat-widget-container.minimized {
    height: 60px !important;
    overflow: hidden;
}

#chat-widget-container.minimized #chat-body {
    display: none;
}

/* Chat Widget - Header */
#chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(45deg, #FF9933, #138808);
    color: white;
    border-radius: 18px 18px 0 0; /* Match container border radius */
    flex-shrink: 0; /* Prevent header from shrinking */
    min-height: 50px; /* Ensure consistent header height */
    cursor: move; /* Indicate draggable header */
    user-select: none; /* Prevent text selection during drag */
}

/* Chat Header Controls */
.chat-header-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.chat-control-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.chat-control-btn:active {
    transform: scale(0.95);
}

/* Chat header content container */
.chat-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Chat logo styling */
.chat-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#chat-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

#close-chat-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

#close-chat-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Chat Widget - Body Layout and OTP View */
#chat-body {
    flex-grow: 1; /* Take remaining vertical space */
    display: flex;
    flex-direction: column;
    padding: 20px; /* Increased padding for better spacing */
    overflow: hidden; /* Prevent body scroll */
    min-height: 0; /* Allow flex shrinking */
}

#otp-view, #chat-view {
    display: flex; /* Default display controlled later by JS */
    flex-direction: column;
    height: 100%; /* Fill chat-body height */
    justify-content: flex-start; /* Align content to top */
    gap: 15px; /* Add consistent spacing between elements */
}

/* Welcome message container */
.welcome-message {
    margin-bottom: 20px;
    text-align: center;
}

.welcome-line-1, .welcome-line-2 {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    color: #333;
    text-align: center;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.welcome-line-2 {
    margin-bottom: 0;
}

#otp-input-area p {
    margin: 0 0 15px 0; /* Consistent margin */
    font-size: 0.95rem; /* Slightly larger for better readability */
    color: #333;
    text-align: center;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

/* Platform links styling in welcome message */
.platform-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.platform-link:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #1da851;
}

.telegram-link {
    color: #0088cc;
}

.telegram-link:hover {
    background: rgba(0, 136, 204, 0.1);
    color: #006699;
}

.platform-link i {
    font-size: 1.1em;
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: #FF9933;
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

.country-code {
    background: #f8f9fa;
    padding: 14px 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
}

.phone-input-container input[type="tel"] {
    flex: 1;
    padding: 14px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: white;
}

#otp-view input[type="text"] {
    width: 100%;
    padding: 14px; /* Increased padding for better touch targets */
    margin: 0; /* Remove margin, use gap from parent */
    border: 2px solid #ddd; /* Thicker border for better visibility */
    border-radius: 10px; /* Slightly more rounded */
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#otp-view input[type="text"]:focus { /* Focus style for OTP input */
    outline: none;
    border-color: #FF9933;
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

#otp-view button {
    width: 100%;
    padding: 14px; /* Increased padding to match inputs */
    color: white;
    border: none;
    border-radius: 10px; /* Match input border radius */
    font-size: 1rem;
    font-weight: 600; /* Slightly bolder */
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
    margin: 0; /* Remove margin, use gap from parent */
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

#otp-view button:hover:not(:disabled) {
    transform: translateY(-1px); /* Subtle hover effect */
}

#otp-view button:disabled { /* Shared disabled style below */
    opacity: 0.6;
    cursor: not-allowed;
}

#send-otp-btn, #verify-otp-btn {
    background: #138808; /* Green */
}
#send-otp-btn:hover:not(:disabled), #verify-otp-btn:hover:not(:disabled) {
    background: #0f6b06; /* Darker Green */
}

#otp-input-area {
    margin-top: 20px;
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Consistent spacing for OTP area elements */
}

.status-message {
    font-size: 0.9rem; /* Slightly larger for better readability */
    margin: 0; /* Remove margin, use gap from parent */
    min-height: 1.5em; /* Increased reserved space */
    text-align: center;
    padding: 8px 12px; /* Add padding for better visual separation */
    border-radius: 6px; /* Rounded corners */
    background-color: #f8f9fa; /* Light background */
    border: 1px solid #e9ecef; /* Subtle border */
}
.status-message.error { 
    color: #dc3545; 
    font-weight: 500; 
    background-color: #f8d7da; 
    border-color: #f5c6cb; 
}
.status-message.success { 
    color: #138808; 
    font-weight: 500; 
    background-color: #d4edda; 
    border-color: #c3e6cb; 
}
.status-message.info { 
    color: #000080; 
    background-color: #d1ecf1; 
    border-color: #bee5eb; 
}

/* Chat Widget - Chat View Specific Styles */
#chat-view {
    justify-content: space-between; /* Push input area to bottom */
}

#message-area {
    flex-grow: 1; /* Take available space */
    overflow-y: auto; /* Enable scrolling for messages */
    padding: 10px 5px; /* Add some padding */
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Space between messages */
}

.message {
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 85%;
    word-wrap: break-word; /* Wrap long words */
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.message.user {
    background-color: #E6FFDC; /* Lighter green for user */
    color: #1f1f1f;
    align-self: flex-end; /* Align user messages to the right */
    border-bottom-right-radius: 4px; /* Tail effect */
}

.message.bot {
    background-color: #f0f0f0; /* Light grey for bot */
    color: #1f1f1f;
    align-self: flex-start; /* Align bot messages to the left */
    border-bottom-left-radius: 4px; /* Tail effect */
}
/* Style links within bot messages */
 .message.bot a {
    color: #000080; /* Navy blue links */
    text-decoration: underline;
 }
 .message.bot a:hover {
    color: #FF9933; /* Saffron on hover */
 }


#input-area {
    display: flex;
    gap: 10px;
    align-items: center; /* Vertically align input and button */
    border-top: 1px solid #eee;
    padding-top: 10px;
}

#chat-input {
    flex-grow: 1; /* Take remaining width */
    margin-bottom: 0; /* Remove default margin */
    padding: 12px; /* Consistent padding */
    border-radius: 20px; /* Pill shape */
}
 #chat-input:focus { /* Shared focus style */
    outline: none;
    border-color: #FF9933;
    box-shadow: 0 0 0 2px rgba(255, 153, 51, 0.2);
 }


#send-message-btn {
    background: #FF9933; /* Saffron */
    color: white;
    width: auto; /* Allow button to size naturally */
    padding: 10px 18px; /* Adjust padding */
    border-radius: 20px; /* Pill shape */
    margin-top: 0; /* Remove default margin */
}
#send-message-btn:hover:not(:disabled) {
     background: #e6851a; /* Darker Saffron */
}
 #send-message-btn:disabled { /* Shared disabled style */
    opacity: 0.6;
    cursor: not-allowed;
 }

/* Chat Widget Responsive Styles */

/* Mobile devices (< 768px) - Full-screen overlay */
@media screen and (max-width: 767px) {
    #chat-widget-container {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: none !important;
        max-height: none !important;
        min-height: none !important;
        border-radius: 0 !important;
        border: none !important;
        z-index: 9999;
    }
    
    #chat-header {
        padding: 15px 20px;
        border-radius: 0;
    }
    
    #chat-body {
        padding: 20px;
        flex: 1;
    }
    
    #chat-title {
        font-size: 1.1rem;
    }
    
    .phone-input-container input[type="tel"],
    #otp-view input[type="text"] {
        padding: 16px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .country-code {
        padding: 16px 12px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    #otp-view button {
        padding: 16px;
        font-size: 1rem;
    }
    
    #chat-toggle-button {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    #chat-toggle-button img {
        width: 80%;
        height: 80%;
    }
    
    /* Hide resize handles on mobile */
    .chat-resize-handle {
        display: none;
    }
    
    /* Hide control buttons on mobile except close */
    .chat-control-btn:not(#close-chat-btn) {
        display: none;
    }
}

/* Tablet devices (768px - 1024px) - 70% of screen */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    #chat-widget-container {
        width: 70vw !important;
        height: 70vh !important;
        max-width: 600px !important;
        max-height: 700px !important;
        min-width: 400px !important;
        min-height: 500px !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
    }
    
    #chat-header {
        padding: 16px 20px;
    }
    
    #chat-body {
        padding: 18px;
    }
    
    #chat-toggle-button {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
    
    /* Show limited resize handles on tablet */
    .resize-handle-nw,
    .resize-handle-ne,
    .resize-handle-sw,
    .resize-handle-se {
        display: block;
    }
    
    .resize-handle-n,
    .resize-handle-s,
    .resize-handle-w,
    .resize-handle-e {
        display: none;
    }
}

/* Desktop devices (> 1024px) - Standard with full resize handles */
@media screen and (min-width: 1025px) {
    #chat-widget-container {
        /* Use default desktop styles */
    }
    
    /* Show all resize handles on desktop */
    .chat-resize-handle {
        display: block;
    }
    
    /* Show all control buttons on desktop */
    .chat-control-btn {
        display: flex;
    }
}

/* Very small screens (< 480px) - Ensure full coverage */
@media screen and (max-width: 479px) {
    #chat-widget-container {
        /* Inherit mobile full-screen styles */
    }
    
    #chat-header {
        padding: 12px 16px;
    }
    
    #chat-body {
        padding: 16px;
    }
    
    #chat-toggle-button {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
}