body {
    font-family: sans-serif;
    background-color: #020617;
    color: #e2e8f0;
    margin: 0;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

a {
    color: #38bdf8;
    text-decoration: none;
}

/* Navbar */
.navbar {
    background-color: #0f172a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand span {
    color: #38bdf8;
}

.nav-links a {
    margin-left: 20px;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #38bdf8;
    transition: width 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pill {
    background-color: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #38bdf8;
}

.hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #38bdf8;
    color: #020617;
    border: 1px solid #38bdf8;
}

.btn-primary:hover {
    background-color: transparent;
    color: #38bdf8;
}

.btn-secondary {
    background-color: transparent;
    color: #94a3b8;
    border: 1px solid #94a3b8;
}

.btn-secondary:hover {
    background-color: #94a3b8;
    color: #020617;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
}

.stat-card span {
    color: #94a3b8;
}

.alt-section{
    background:rgba(255,255,255,0.03);
    padding:80px 0;
}

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.service-card {
    background: #0f172a;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-top:20px;
}

.mini-card{
    background:#0f172a;
    padding:15px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.1);
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag{
    background:rgba(103,232,249,0.1);
    color: #67e8f9;
    padding:8px 14px;
    border-radius:20px;
    display:inline-block;
}

.franchise-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items: center;
}

.franchise-box{
    background:#0f172a;
    padding:25px;
    border-radius:20px;
}

.franchise-list{
    list-style:none;
    padding:0;
}

.franchise-list li{
    margin-bottom:15px;
    display: flex;
    align-items: center;
}

.franchise-list li::before {
    content: '✓';
    color: #38bdf8;
    margin-right: 10px;
    font-weight: bold;
}

#contact-form {
    background: #0f172a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 15px;
    background-color: #020617;
    border: 1px solid #1e293b;
    border-radius: 8px;
    color: #e2e8f0;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.3);
}

#form-status {
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
}

.success {
    color: #34d399;
}

.error {
    color: #f87171;
}

.footer {
    padding: 40px 0;
    color: #94a3b8;
    background-color: #0f172a;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-col p, .footer-col a {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #38bdf8;
}

.copyright {
    margin-top: 40px;
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    font-size: 0.9rem;
    text-align: center;
}

/* Admin Panel */
.admin-login {
    max-width: 400px;
    margin: 100px auto;
    padding: 40px;
    background-color: #0f172a;
    border-radius: 12px;
}

.inquiries-table-container {
    overflow-x: auto;
}

.inquiries-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.inquiries-table th, .inquiries-table td {
    padding: 12px 15px;
    border: 1px solid #1e293b;
    text-align: left;
}

.inquiries-table th {
    background-color: #1e293b;
    font-weight: bold;
}

.inquiries-table tbody tr:nth-child(even) {
    background-color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #0f172a;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px 0;
        transform: scaleY(0);
        opacity: 0;
        transform-origin: top;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        pointer-events: none;
    }

    .nav-links.active {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    h1 {
        font-size: 2.5rem;
    }

    .two-col, .franchise-wrap {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    #contact-form {
        padding: 20px;
    }

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

    .footer-col {
        text-align: center;
    }
}
