/* --- style.css (Tech Dark Theme) --- */
:root {
    --primary-cyan: #00f2ff;       /* Bright Neon Cyan */
    --primary-blue: #2563eb;       /* Deep Blue */
    --bg-dark: #0f172a;            /* Main Dark Background */
    --bg-card: #1e293b;            /* Slightly lighter for cards */
    --text-main: #f8fafc;          /* White text */
    --text-muted: #94a3b8;         /* Gray text */
    --glow-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; 
    background: rgba(15, 23, 42, 0.95); /* Glass effect */
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(10px);
}

.logo { 
    font-size: 1.5rem; font-weight: bold; 
    background: linear-gradient(90deg, #fff, var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase; letter-spacing: 2px; 
}

.nav-links a { margin-left: 20px; color: var(--text-muted); font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-cyan); text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); }

/* --- HERO SECTION --- */
.hero {
    text-align: center; padding: 80px 20px;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    border-bottom: 1px solid #334155;
}

.hero h1 {
    font-size: 3.5rem; margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 0.8s ease;
}

.hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto 30px; font-size: 1.1rem; }

/* Contact Buttons (Hero) */
.contact-actions { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.action-btn {
    padding: 12px 30px; border-radius: 5px; font-weight: bold; display: flex; align-items: center; gap: 10px;
    transition: 0.3s; font-size: 1rem;
}
.call-btn { border: 1px solid #22c55e; color: #22c55e; background: rgba(34, 197, 94, 0.1); }
.call-btn:hover { background: #22c55e; color: black; box-shadow: 0 0 15px #22c55e; }

.email-btn { border: 1px solid var(--primary-cyan); color: var(--primary-cyan); background: rgba(0, 242, 255, 0.1); }
.email-btn:hover { background: var(--primary-cyan); color: black; box-shadow: 0 0 15px var(--primary-cyan); }

/* --- STATS STRIP (New Element) --- */
.stats-strip {
    display: flex; justify-content: center; gap: 50px;
    background: #0b1120; padding: 20px; border-bottom: 1px solid #334155;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number { font-size: 1.5rem; font-weight: bold; color: var(--primary-cyan); display: block; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- DATABASE GRID SECTION --- */
.db-section { padding: 60px 5%; text-align: center; }
.db-section h2 { font-size: 2.5rem; margin-bottom: 10px; color: white; }
.section-subtitle { color: var(--text-muted); margin-bottom: 40px; }

/* --- DATABASE GRID SECTION --- */
.db-section { padding: 60px 5%; text-align: center; }
.db-section h2 { font-size: 2.5rem; margin-bottom: 10px; color: white; }
.section-subtitle { color: var(--text-muted); margin-bottom: 40px; }

.db-grid {
    display: grid;
    /* CHANGE: Force exactly 3 columns of equal width */
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    max-width: 1200px; /* Optional: Keeps the 3 columns from getting too wide on huge screens */
    margin: 0 auto;    /* Centers the grid if max-width is used */
}

.db-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #334155;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex; flex-direction: column; align-items: center; gap: 15px;
    position: relative; overflow: hidden;
}

.db-card i { font-size: 2.5rem; color: var(--primary-cyan); transition: 0.3s; }
.db-card span { font-size: 1.2rem; font-weight: bold; color: var(--text-main); }

/* Hover Effects */
.db-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--primary-cyan); 
    box-shadow: var(--glow-shadow); 
}
.db-card:hover i { transform: scale(1.1); text-shadow: 0 0 15px var(--primary-cyan); }

/* ... (Keep your Other Database and Footer sections as they are) ... */

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .stats-strip { gap: 20px; }
    
    /* CHANGE: On tablets/phones, switch to 1 or 2 columns so cards remain readable */
    .db-grid {
        grid-template-columns: 1fr; /* Stacks items vertically on mobile */
    }
}/* --- OTHER DATABASE --- */
.other-db-section {
    padding: 50px 20px; text-align: center;
    background: linear-gradient(to right, #0f172a, #1e293b);
    border-top: 1px solid #334155;
}
.other-db-btn {
    margin-top: 20px; padding: 15px 40px;
    background: transparent; border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan); font-weight: bold; border-radius: 30px;
    cursor: pointer; transition: 0.3s;
    text-transform: uppercase; letter-spacing: 1px;
}
.other-db-btn:hover { background: var(--primary-cyan); color: black; box-shadow: 0 0 20px var(--primary-cyan); }

/* --- FOOTER --- */
footer { padding: 40px; text-align: center; background: #0b1120; color: var(--text-muted); border-top: 1px solid #334155; }

/* --- ANIMATIONS --- */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Response */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .stats-strip { gap: 20px; }
}
/* --- PRICING SECTION (UPDATED) --- */
.page-title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 3rem;
    background: linear-gradient(90deg, #fff, var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 0.8s ease;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 5% 80px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    width: 320px;
    transition: all 0.3s ease; /* smooth transition for everything */
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Typography inside Card */
.pricing-card h3 {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Features List */
.features-list {
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li::before {
    content: "✓";
    color: var(--primary-cyan);
    font-weight: bold;
}

/* Purchase Button */
.btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* --- HOVER EFFECTS --- */

/* When hovering the CARD: Scale up, Glow, and Change Border */
.pricing-card:hover {
    transform: translateY(-10px) scale(1.03); /* Moves up and grows slightly */
    border-color: var(--primary-cyan);        /* Border turns Cyan */
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.15); /* Soft Cyan Glow */
    z-index: 10; /* Ensures hovered card sits on top of others */
}

/* When hovering the CARD, also fill the BUTTON inside it */
.pricing-card:hover .btn {
    background: var(--primary-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--primary-cyan);
}

/* Mobile Pricing Adjustment */
@media (max-width: 768px) {
    .pricing-container { flex-direction: column; }
    .pricing-card { width: 100%; }
}
/* --- BOTTOM CTA SECTION (Pricing Redirect) --- */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    /* Subtle gradient to separate it from the content above */
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    border-top: 1px solid #334155;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.cta-big-btn {
    display: inline-block;
    text-decoration: none;
    padding: 20px 60px;
    font-size: 1.5rem; /* Big font */
    font-weight: 800;
    color: var(--primary-cyan);
    background: transparent;
    border: 2px solid var(--primary-cyan);
    border-radius: 50px; /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1); /* Subtle initial glow */
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Super Bright Glow */
.cta-big-btn:hover {
    background: var(--primary-cyan);
    color: #000; /* Black text for readability on cyan */
    box-shadow: 0 0 50px var(--primary-cyan), 0 0 20px var(--primary-cyan) inset;
    transform: translateY(-5px) scale(1.05);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .cta-big-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.2rem;
    }
}
/* --- TERMS & CONDITIONS PAGE --- */
.terms-section {
    padding: 60px 20px;
    min-height: 60vh; /* Ensures footer stays at bottom on short pages */
}

.terms-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card); /* Dark Blue/Grey */
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5); /* Deep shadow */
    position: relative;
    overflow: hidden;
}

/* Optional: Add a subtle top border glow */
.terms-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.terms-list {
    list-style: none;
    counter-reset: term-counter; /* Initialize counter */
}

.terms-list li {
    position: relative;
    padding-left: 60px; /* Space for the number */
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    transition: 0.3s;
}

.terms-list li:hover {
    color: var(--text-main); /* Brighten text on hover */
}

/* The Glowing Numbers */
.terms-list li::before {
    counter-increment: term-counter;
    content: counter(term-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 255, 0.05);
    color: var(--primary-cyan);
    border: 1px solid var(--primary-cyan);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    transition: 0.3s;
}

/* Make the number glow brighter on hover */
.terms-list li:hover::before {
    background: var(--primary-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--primary-cyan);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .terms-box { padding: 30px 20px; }
    .terms-list li { padding-left: 0; margin-top: 50px; text-align: center; }
    .terms-list li::before { position: relative; display: block; margin: 0 auto 15px; }
}
/* --- REVIEWS SECTION --- */
.reviews-section {
    padding: 60px 5%;
    text-align: center;
}

.review-grid {
    display: grid;
    /* Responsive grid: 3 columns on desktop, 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover Effect: Glow and Lift */
.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

/* Quote Icon Decoration */
.review-card::before {
    content: "\f10d"; /* FontAwesome Quote Left Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05); /* Very subtle background icon */
    transition: 0.3s;
}

.review-card:hover::before {
    color: rgba(0, 242, 255, 0.1); /* Glows slightly on hover */
}

/* Star Ratings */
.stars {
    color: #facc15; /* Bright Gold */
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto; /* Pushes author to bottom */
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--primary-cyan);
}
/* --- FEATURES / WHY CHOOSE US SECTION --- */
.features-section {
    padding: 80px 5%;
    background: var(--bg-dark);
    text-align: center;
}

.features-section h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #fff, var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    /* Create a responsive grid: roughly 3 columns on desktop */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid #334155;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left; /* Text aligned left for better readability */
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Lift up and Glow */
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

/* The Icon Styling */
.feature-icon {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 8px;
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--primary-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--primary-cyan);
}

.feature-card h3 {
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
/* --- CONTACT PAGE STYLING --- */
.contact-section {
    padding: 60px 5%;
    min-height: 80vh; /* Keeps footer at bottom */
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split into 2 columns */
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

/* Left Side: Info Box */
.contact-info {
    padding: 20px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: 0.3s;
}

.info-item:hover .info-icon {
    background: var(--primary-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--primary-cyan);
}

.info-text h4 { color: var(--text-main); font-size: 1.2rem; }
.info-text span { color: var(--text-muted); }

/* Right Side: Form Box */
.contact-form-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #334155;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* The Input Fields */
.form-input {
    width: 100%;
    padding: 15px;
    background: #0f172a; /* Darker than card */
    border: 1px solid #334155;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

/* Glow when user types */
.form-input:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

textarea.form-input {
    resize: none;
    height: 150px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stack vertically on phone */
        gap: 30px;
    }
    .contact-info { text-align: center; }
    .info-item { justify-content: center; }
}
/* --- MOBILE NAVIGATION STYLES --- */

/* 1. The Hamburger Icon (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-main);
    transition: all 0.3s ease-in-out;
}

/* 2. Mobile Logic (Only triggers on screens smaller than 768px) */
@media (max-width: 768px) {
    /* Show the hamburger icon */
    .hamburger {
        display: block;
    }

    /* Turn the hamburger bars into an 'X' when active */
    .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); }

    /* Hide the nav links off-screen by default */
    .nav-links {
        position: fixed;
        left: -100%; /* Hides it to the left */
        top: 70px;   /* Height of your navbar */
        gap: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98); /* Dark background */
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 2px solid var(--primary-cyan);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    /* When the 'active' class is added via JS, slide it in */
    .nav-links.active {
        left: 0;
    }

    /* Style the links inside the mobile menu */
    .nav-links a {
        margin: 20px 0;
        display: block; /* Makes the whole area clickable */
        font-size: 1.2rem;
    }
}
/* --- FEEDBACK PAGE STYLING --- */
.feedback-section {
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback-box {
    background: var(--bg-card);
    width: 100%;
    max-width: 600px; /* Narrower than contact form for focus */
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #334155;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* Add a cool top border glow */
.feedback-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

/* Style the Dropdown menu to match inputs */
select.form-input {
    appearance: none; /* Removes default arrow */
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300f2ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
}

/* Custom Checkbox for 'Privacy' */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.checkbox-group input {
    accent-color: var(--primary-cyan); /* Makes the checkmark cyan */
    width: 18px;
    height: 18px;
}