/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* Chat Modal Styles */
.chat-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}
.chat-modal.active {
    display: flex;
}
.chat-modal-content {
    background: #fff;
    border-radius: 18px;
    max-width: 350px;
    width: 95%;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    position: relative;
    animation: fadeInUp 0.4s;
    margin: 20px;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 480px) {
    .chat-modal-content {
        width: calc(100% - 40px);
        padding: 24px 20px 20px 20px;
        margin: 10px;
    }
}
.chat-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    font-weight: bold;
    z-index: 1;
}
.chat-modal-header {
    text-align: center;
    margin-bottom: 18px;
}
.chat-expert-icon {
    font-size: 38px;
    color: #ffd700;
    margin-bottom: 8px;
}
.chat-modal-header h3 {
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 700;
    color: #222;
}
.chat-modal-header p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}
.chat-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.chat-form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #fafafa;
    transition: border-color 0.3s;
}
.chat-form-group input:focus {
    border-color: #ffd700;
    outline: none;
}
.chat-start-btn {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.chat-start-btn:hover {
    background: #e6c200;
}
.chat-form-message {
    margin-top: 10px;
    font-size: 14px;
    color: #d9534f;
    min-height: 18px;
    text-align: center;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Emergency Banner */
.emergency-banner {
    background: #dc3545;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.banner-close {
    position: absolute;
    right: 0;
    cursor: pointer;
    padding: 5px;
}

.banner-content a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.brand-text {
    color: #ffd700;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.navbar-nav {
    display: flex;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,0.95);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    display: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255,215,0,0.1);
    color: #ffd700;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-call {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-call:hover {
    background: #218838;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: #1a1a1a;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2001;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.mobile-menu-close:hover {
    background-color: #333;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

.mobile-nav a:hover {
    color: #ffd700;
}

.mobile-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.mobile-call-btn,
.mobile-email-btn {
    display: block;
    background: #28a745;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 10px;
    text-align: center;
}

.mobile-email-btn {
    background: #007bff;
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: #ffd700;
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.btn-primary {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #218838;
    color: #fff;
}

.language-selector select {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 15px;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: transparent;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        gap: 30px;
    }
    
    .nav-menu.active .nav-link {
        font-size: 24px;
        color: #fff;
        text-decoration: none;
        padding: 15px;
    }
    
    .nav-container {
        position: relative;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(139,69,19,0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23654321" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 70px 0 60px 0;
    }
    
    .header {
        top: 0 !important;
        position: fixed;
        z-index: 1001;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .emergency-contact-banner {
        display: none;
    }
}

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

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.highlight {
    color: #ffd700;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

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

.feature i {
    color: #ffd700;
}

.cta-button {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Form */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    color: #333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.alert {
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.submit-btn {
    width: 100%;
    background: #ffd700;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #e6c200;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-item i {
    color: #28a745;
}

/* Legal Documents Section */
.legal-documents {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-documents h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-weight: 400;
}

.legal-documents p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.document-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #000;
}

.document-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.document-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.card-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.cta-banner {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #000;
}

.banner-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Legal Consultation Section */
.legal-consultation {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.legal-consultation h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-consultation p {
    text-align: center;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.consultation-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.card-icon.gold {
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #000;
}

.consultation-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.consultation-card p {
    color: #ccc;
    font-size: 14px;
}

.consultation-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #000;
}

/* Legal Notices Section */
.legal-notices {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-notices h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-notices p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.notice-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.notice-card .card-icon {
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #000;
}

.notice-card h4 {
    font-size: 16px;
    font-weight: 600;
}

.notice-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #000;
}

/* Registration Process Section */
.registration-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.registration-process h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    font-size: 14px;
}

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

.lawyer-character {
    width: 200px;
    height: 200px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #ffd700;
    margin: 0 auto 30px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.action-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.action-btn.register { background: #ffd700; color: #000; }
.action-btn.enter-otp { background: #ffed4e; color: #000; }
.action-btn.set-pin { background: #28a745; color: #fff; }
.action-btn.dashboard { background: #6c757d; color: #fff; }
.action-btn.consult { background: #ffeaa7; color: #000; }

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.client-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.client-info span {
    font-size: 14px;
    color: #666;
}

/* Mobile App Section */
.mobile-app {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

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

.app-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.app-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-text p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.app-features {
    list-style: none;
    margin-bottom: 30px;
}

.app-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-features i {
    color: #28a745;
}

.download-options {
    display: flex;
    gap: 30px;
    align-items: center;
}

.qr-code {
    width: 140px;
    height: auto;
    text-align: center;
}

.qr-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: #fff;
    padding: 10px;
}

.qr-text {
    color: #ffd700;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #333;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.store-btn:hover {
    background: #555;
}

.store-btn i {
    font-size: 24px;
}

.store-btn div span {
    display: block;
    font-size: 12px;
    color: #ccc;
}

.store-btn div strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.app-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 35px;
    padding: 15px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #666;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 25px;
    padding: 25px 15px 15px 15px;
    position: relative;
    overflow: hidden;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
}

.feature-tile {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    line-height: 1.3;
}

.feature-tile:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffd700;
}

.footer-logo span {
    color: #ffd700;
    font-size: 24px;
    font-weight: 700;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.partner-logos {
    margin-top: 20px;
}

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

.partner-logo span {
    font-size: 12px;
    color: #ccc;
}

.partner-logo img {
    height: 30px;
}

.footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
}

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

.contact-item i {
    color: #ffd700;
    margin-top: 2px;
}

.contact-item span {
    color: #ccc;
    font-size: 14px;
}

.social-links h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #ffd700;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-nav,
    .navbar-actions .btn-call {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .emergency-banner .banner-content {
        font-size: 12px;
        padding: 0 40px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    .navbar-brand .logo {
        width: 35px;
        height: 35px;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 18px;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 16px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 15px;
    }
    
    .feature {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .call-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Hero Form Mobile */
    .hero-form {
        margin-top: 0;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-container h3 {
        font-size: 20px;
    }
    
    /* Grids Mobile */
    .documents-grid,
    .consultation-grid,
    .notices-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .download-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* App Section Mobile */
    .app-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .phone-mockup {
        width: 200px;
        height: 350px;
        margin: 0 auto;
    }
    
    .app-header {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .feature-tile {
        font-size: 10px;
        padding: 10px 6px;
    }
    
    .qr-code {
        margin-bottom: 15px;
    }
    
    .qr-image {
        width: 80px;
        height: 80px;
    }
    
    /* About & Contact Pages Mobile */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .col-md-6,
    .col-md-3,
    .col-md-4,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px;
    }
    
    .contact-sidebar {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text h2 {
        font-size: 18px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .feature {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .hero-form {
        padding: 20px;
    }
    
    .form-container h3 {
        font-size: 20px;
    }
    
    /* Mobile Emergency Banner */
    .emergency-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .emergency-text {
        font-size: 12px;
    }
    
    .emergency-phone {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Mobile CTA Buttons */
    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .call-button {
        justify-content: center;
        text-align: center;
    }
    
    /* Mobile Floating Contact */
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-toggle {
        width: 50px;
        height: 50px;
    }
    
    .contact-toggle i {
        font-size: 20px;
    }
    
    .contact-options {
        bottom: 60px;
        right: -50px;
        min-width: 180px;
    }
    
    /* Mobile Contact Section */
    .phone-highlight {
        text-align: center;
    }
    
    .phone-number {
        font-size: 20px;
    }
}

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

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Validation */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff6b00;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

/* Hover Effects */
.document-card,
.consultation-card,
.notice-card,
.testimonial-card {
    cursor: pointer;
}

/* Emergency Contact Banner */
.emergency-contact-banner {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide emergency banner on mobile */
@media (max-width: 768px) {
    .emergency-contact-banner {
        display: none !important;
    }
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.emergency-text {
    font-weight: 600;
    font-size: 14px;
}

.emergency-phone {
    background: rgba(0,0,0,0.2);
    color: #000;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.emergency-phone:hover {
    background: rgba(0,0,0,0.3);
    transform: scale(1.05);
}

/* Adjust header position for emergency banner */
.header {
    top: 50px;
}

/* Enhanced CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.call-button {
    background: #28a745;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-text strong {
    font-size: 16px;
}




        /* WhatsApp Widget Styles */
        /* ========================================================================================== */
        .whatsapp-widget {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 1000;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

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

        .whatsapp-button:active {
            transform: scale(0.95);
        }

        .whatsapp-icon {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* Tooltip */
        .whatsapp-tooltip {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: white;
            color: #333;
            padding: 10px 16px;
            border-radius: 8px;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 20px;
            width: 12px;
            height: 12px;
            background: white;
            transform: rotate(45deg);
        }

        .whatsapp-widget:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            bottom: 75px;
        }

        /* Ripple effect */
        .whatsapp-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.3);
            animation: ripple 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
            }
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .whatsapp-widget {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-button {
                width: 55px;
                height: 55px;
            }

            .whatsapp-icon {
                width: 28px;
                height: 28px;
            }

            .demo-content h1 {
                font-size: 2rem;
            }

            .demo-content p {
                font-size: 1rem;
            }
        }