@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #ffd700;
    --primary-gradient: linear-gradient(135deg, #ffd700, #daa520);
    --secondary-color: #0a192f;
    --accent-color: #c0c0c0;
    --text-color: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Siliguri', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
    transition: var(--transition);
}

.logo-icon:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Search Bar Styles */
.search-container {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.search-container form {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
}

.search-container form:hover,
.search-container form:focus-within {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.search-container input {
    width: 100%;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    color: white;
    outline: none;
    font-size: 0.9rem;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-container button {
    background: transparent;
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.search-container button:hover {
    transform: scale(1.1);
}

/* Tabs Bar Styles */
.tabs-bar {
    background-color: transparent;
    position: sticky;
    top: 70px;
    z-index: 998; 
}

.tabs-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.tabs-group {
    display: inline-flex;
    background-color: #0d213d;
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tab-item {
    padding: 0.6rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.tab-item:hover {
    color: var(--primary-color);
}

.tab-item.active {
    background: var(--primary-gradient);
    color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.tab-item.active::after {
    display: none; /* Remove the old underline style */
}

/* Tab Content Logic */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    color: white;
}

.gold-border { border: 1px solid var(--primary-color); }
.silver-border { border: 1px solid var(--accent-color); }

.content-header {
    text-align: center;
    margin-bottom: 2rem;
}

.content-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.price-card.featured {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--secondary-color);
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

.price-card h4 { margin-bottom: 1rem; color: var(--primary-color); }
.price-card .price { font-size: 2rem; font-weight: bold; margin-bottom: 1.5rem; }
.price-card .price span { font-size: 0.9rem; opacity: 0.6; }

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.price-card ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.price-card ul li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 10px;
}

/* Form Styling */
.form-card {
    background: white;
    padding: 0.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.plan-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.plan-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.plan-option:hover {
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.05);
}

.plan-option input:checked + .plan-info {
    color: var(--secondary-color);
}

.plan-info {
    display: flex;
    flex-direction: column;
}

.plan-info strong {
    font-size: 0.9rem;
}

.plan-info span {
    font-size: 0.8rem;
    color: #666;
}

/* FAQ & Reviews Alignment */

/* FAQ & Reviews Alignment with Motive Section */
.faq-section, .reviews-section {
    padding: 1rem 0; 
}

.faq-content, .reviews-content {
    max-width: 800px;
    margin: 0 auto;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.reviewer {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.reviewer strong {
    color: var(--secondary-color);
}

.reviewer span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    font-weight: 700;
    color: var(--secondary-color);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background-color: rgba(255, 215, 0, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    transition: all 0.3s ease-out;
}

.faq-item.active {
    border-left: 4px solid var(--primary-color);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px; /* Adjust as needed */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    order: 3;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

header {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    order: 1;
}

nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%; /* Reduced width for a cleaner right-side drawer look */
    height: calc(100vh - 70px);
    background-color: var(--secondary-color);
    transition: var(--transition);
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

nav.active {
    right: 0;
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    padding-top: 2rem;
    background-color: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
}

nav ul li {
    margin: 0;
    width: 100%;
    text-align: left;
}

nav ul li a {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: transparent;
    color: var(--text-light) !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--primary-color);
    background-image: var(--primary-gradient);
    color: var(--secondary-color) !important;
    padding-left: 2.5rem;
}

.search-container {
    flex: 1;
    margin: 0 10px;
    max-width: fit-content;
    order: 2;
}

.search-container input {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.tab-item {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
}

.tabs-bar {
    top: 82px; /* Adjusted for smaller mobile header height if needed */
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 1rem 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.2rem;
}

.contact-item:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #ffd70033;
}

.contact-item span:not(.contact-icon) {
    display: none; /* Hide text, keep only icons for circle style */
}

.footer-social-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.footer-social-row li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social-row li a:hover {
    background: var(--primary-gradient);
    color: var(--secondary-color);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    padding-left: 0; /* Reset previous hover padding */
}

.contact-icon {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.hero {
    height: auto;
    padding: 5rem 20px;
}

.hero h2 {
    font-size: 2rem;
}

.container {
    padding: 1rem 20px;
}

.section-title {
    font-size: 2rem;
}

/* Global Buttons Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--secondary-color);
}

/* Stepper Styles */
.stepper-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.stepper-btn {
    background: var(--bg-light);
    border: none;
    color: var(--secondary-color);
    width: 50px;
    height: 45px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.stepper-btn:hover {
    background: #eee;
}

.stepper-btn:active {
    background: #ddd;
}

.stepper-group input {
    flex: 1;
    border: none !important;
    text-align: left;
    padding-left: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    background: transparent;
    pointer-events: none; /* Extra safety for readonly */
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    transition: 0.2s;
}

.close-modal:hover {
    color: var(--secondary-color);
}

/* Status Card Styles */
.status-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #fff;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.status-header h4 {
    margin: 0;
    color: var(--secondary-color);
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Status Colors */
.status-card.pending .status-badge { background: #fff8e1; color: #f39c12; }
.status-card.approved .status-badge { background: #e3f2fd; color: #3498db; }
.status-card.completed .status-badge { background: #e8f5e9; color: #2ecc71; }
.status-card.rejected .status-badge { background: #ffebee; color: #e74c3c; }

.status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.status-row span {
    color: #777;
    font-size: 0.9rem;
}

.status-row strong {
    color: var(--secondary-color);
}

.status-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #ddd;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}

.status-error {
    text-align: center;
    padding: 2rem;
    color: #e74c3c;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

