* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #111;
    line-height: 1.6;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #facc15;
    font-size: 20px;
    font-weight: bold;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* NAV MENU */
nav ul.nav-list {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

nav ul.nav-list li a {
    color: white !important;
    padding: 10px 12px;
    display: block;
    font-size: 14px;
    border-radius: 8px;
    transition: 0.3s;
}

nav ul.nav-list li a:hover {
    color: #facc15 !important;
    background: rgba(255, 255, 255, 0.06);
}

/* ABOUT SECTION */
.about {
    padding: 60px 20px;
}

.container {
    max-width: 1050px;
    margin: auto;
}

.title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 18px;
    color: #0f172a;
}

.description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.description span {
    color: #0077ff;
    font-weight: bold;
}

/* CARDS */
.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.card {
    background: #f4f6ff;
    padding: 25px;
    border-radius: 14px;
    width: 300px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.card h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
}

.card p {
    color: #444;
    font-size: 15px;
}

.card:hover {
    transform: translateY(-8px);
    background: #e9eeff;
}

/* DETAILS */
.about-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 45px;
}

.about-details h2 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 10px;
    margin-top: 20px;
}

.about-details h2:first-child {
    margin-top: 0;
}

.about-details p {
    color: #374151;
    font-size: 16px;
    margin-bottom: 16px;
}

.internal-links a {
    color: #2563eb;
    font-weight: 600;
}

.internal-links a:hover {
    text-decoration: underline;
}

/* SOCIAL */
.social {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.social h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #0f172a;
}

.icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 10px;
    border-radius: 50%;
    background: #eeeeee;
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.icons a.whatsapp:hover {
    background: #25D366;
    color: white;
    transform: translateY(-6px);
}

.icons a.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: white;
    transform: translateY(-6px);
}

.icons a.facebook:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-6px);
}

.icons a.youtube:hover {
    background: #FF0000;
    color: white;
    transform: translateY(-6px);
}

.icons a:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 20px 15px;
    margin-top: 40px;
}

.footer p {
    margin: 4px 0;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul.nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 220px;
        background: #0f172a;
        border-radius: 10px;
        padding: 10px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    nav ul.nav-list.active {
        display: flex;
    }

    .title {
        font-size: 30px;
    }

    .description {
        font-size: 16px;
    }

    .card {
        width: 100%;
        max-width: 340px;
    }

    .about-details {
        padding: 22px;
    }

    .about-details h2 {
        font-size: 21px;
    }

    .about-details p {
        font-size: 15px;
    }
}

/* OWNER SECTION */
.owner {
    text-align: center;
    margin-bottom: 40px;
}

.owner img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #facc15;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.owner img:hover {
    transform: scale(1.08);
}

.owner h3 {
    margin-top: 12px;
    font-size: 22px;
    color: #0f172a;
}

.owner p {
    color: #555;
    font-size: 14px;
}