* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111827;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

/* LOGO */
.logo {
    font-size: 28px;
    font-weight: 700;
    color: #22c55e;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #22c55e;
    text-decoration: none;
}

.logo img {
    width: 120px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo span {
    font-size: 1rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.nav-links a:hover {
    color: #22c55e;
}

/* HERO */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}



.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay h1 {
    font-size: 60px;
    margin-bottom: 15px;
}

.overlay p {
    font-size: 22px;
    max-width: 700px;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #22c55e;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
}

/* Founder card (hero) */
.founder-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(124, 119, 119, 0.5);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.founder-card img {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 50%;
}

.overlay h1 {
    font-size: 60px;
}

.overlay p {
    font-size: 22px;
}


/* GENERAL */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    color: #15803d;
}

.section-title p {
    margin-top: 10px;
    color: #4b5563;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.card h3 {
    margin-bottom: 10px;
    color: #15803d;
}

.bg {
    background: #f8fafc;
}
/* list page */
.page-content {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

.list-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.table-wrapper {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.data-table th,
.data-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
}

.data-table th {
    background: #15803d;
    color: white;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.data-table tr:nth-child(even) {
    background: #f9fafb;
}

.data-table tr:hover {
    background: #f0fdf4;
}

.empty-state {
    text-align: center;
    padding: 30px 10px;
    color: #6b7280;
    font-weight: 500;
}

/* PROCESS */

.step {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.number {
    width: 60px;
    height: 60px;
    background: #15803d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* FAQ */

details {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

summary {
    font-weight: 600;
    cursor: pointer;
}

/* CONTACT */

.contact {
    background: #111827;
    color: white;
}

.contact form {
    max-width: 700px;
    margin: auto;
}

.contact input,
.contact textarea,
.contact select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background: #f7f7f7;
    color: #111;
}

.contact select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact button {
    padding: 15px 30px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-row .half {
    flex: 1;
    min-width: 180px;
}

.contact-info {
    margin-top: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
}

.contact-card,
.map-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    color: #111;
}

.contact-card h3,
.map-card h3 {
    margin-bottom: 18px;
    color: #16a34a;
}

.contact-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card p a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.contact-card p a:hover {
    color: #16a34a;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.contact-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #22c55e;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-actions a:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.contact-actions .whatsapp-link {
    background: #25d366;
    color: #111;
}
/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111827;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link.linkedin {
    background: #0a66c2;
}
/*social-icon link ended*/
/*map wrapper*/
.map-wrapper {
    width: 100%;
    max-height: 520px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #e5e7eb;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .map-card {
        padding: 20px;
    }

    .map-wrapper {
        aspect-ratio: 4 / 3;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .form-row {
        gap: 10px;
    }

    .contact button {
        width: 100%;
    }

    .map-wrapper {
        max-height: 320px;
    }
}

/* FOOTER */

footer {
    background: #020617;
    color: white;
    text-align: center;
    padding: 30px;
}

/* WHATSAPP */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    z-index: 999;
}

.whatsapp svg {
    width: 28px;
    height: 28px;
}


/* MOBILE */

/* =========================
   MOBILE STYLE
========================= */

@media (max-width:768px) {

    .overlay {
        padding-bottom: 140px;
    }

    .overlay h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .overlay p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .founder-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        width: 85%;
        max-width: 280px;
        padding: 10px 12px;
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(8px);
    }

    .founder-card img {
        width: 70px;
        height: 70px;
        border: 3px solid #22c55e;
    }

    .founder-name {
        font-size: 15px;
    }

    .founder-role {
        font-size: 12px;
    }

    .hero {
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
        justify-content: space-between;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 4px;
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: white;
        display: block;
        border-radius: 2px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 58px;
        right: 20px;
        flex-direction: column;
        background: #111827;
        padding: 12px 16px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        list-style: none;
    }

    .logo {
        display: flex;
        justify-content: center;
    }

    .logo a {
        gap: 8px;
    }

    .logo img {
        width: 70px;
        height: 35px;
    }

    .logo span {
        font-size: 0.9rem;
    }
}

/* ========================
   INQUIRY LIST PAGE STYLES
======================== */

.inquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
    background-color: #f0f4f8;
    min-height: 100vh;
}

.inquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #22c55e;
}

.inquiry-header h2 {
    font-size: 32px;
    color: #111827;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logout-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.logout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.table-responsive {
    overflow-x: auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.inquiry-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.inquiry-table thead {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.inquiry-table th {
    padding: 18px 16px;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.inquiry-table td {
    padding: 16px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #1e293b;
    font-weight: 500;
}

.inquiry-table tbody tr {
    transition: all 0.25s ease;
    background-color: #ffffff;
}

.inquiry-table tbody tr:nth-child(odd) {
    background-color: #f8fafc;
}

.inquiry-table tbody tr:hover {
    background-color: #f0f9ff;
    box-shadow: inset 0 0 0 2px rgba(34, 197, 94, 0.15);
    border-left: 4px solid #22c55e;
}

.inquiry-table tbody tr:hover td {
    color: #0f172a;
}

/* Responsive Design for Inquiry Page */
@media (max-width: 768px) {
    .inquiry-container {
        padding: 50px 15px 30px 15px;
    }

    .inquiry-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
        border-left: none;
        border-top: 5px solid #22c55e;
    }

    .inquiry-header h2 {
        font-size: 24px;
    }

    .inquiry-table {
        font-size: 13px;
    }

    .inquiry-table th {
        padding: 14px 10px;
        font-size: 12px;
    }

    .inquiry-table td {
        padding: 12px 10px;
    }

    .logout-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}