/* --- 1. GLOBAL RESET AND BODY STYLES --- */
:root {
    --color-bg-primary: #121212;
    --color-bg-secondary: #1E1E1E;
    --color-text-light: #E0E0E0;
    --color-text-muted: #A0A0A0;
    --color-accent: #4D90FE;
    --color-accent-dark: #3776D2;
    --color-border: #333333;
    --color-success: #03FF80;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--color-text-light);
    margin-bottom: 0.5em;
    font-weight: 700;
}

.intro_txt {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

/* --- 2. NAVIGATION BAR STYLING --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--color-bg-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 60px;
}

.NAV_LEFT img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
}

.NAV_RIGHT {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.NAV_RIGHT button {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
    transition: color 0.3s, background-color 0.3s, border-radius 0.3s;
    white-space: nowrap;
}

.NAV_RIGHT button.ACTIVE_LINK {
    color: var(--color-accent);
    background-color: rgba(77, 144, 254, 0.1);
    border-radius: 6px;
}

.NAV_RIGHT button:hover {
    color: var(--color-accent);
    background-color: rgba(77, 144, 254, 0.1);
    border-radius: 6px;
}

.NAV_RIGHT .ORD {
    background-color: var(--color-accent);
    color: var(--color-bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(77, 144, 254, 0.4);
}

.NAV_RIGHT .ORD:hover {
    background-color: var(--color-accent-dark);
    color: white;
    box-shadow: 0 6px 15px rgba(77, 144, 254, 0.6);
}

/* --- HAMBURGER MENU --- */
.HAMBURGER {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    height: 22px;
}

.HAMBURGER span {
    background-color: var(--color-text-light);
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.HAMBURGER.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.HAMBURGER.active span:nth-child(2) {
    opacity: 0;
}

.HAMBURGER.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* --- 3. SECTION MANAGEMENT --- */
section {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: calc(100vh - 120px);
}

section.active {
    display: block;
}

/* --- 4. HOME SECTION --- */
.HOME .HERO {
    text-align: center;
    padding: clamp(2rem, 5vw, 4rem) 0;
    margin-bottom: 3rem;
}

.HOME .HERO h3 {
    color: var(--color-accent);
    font-size: clamp(2rem, 2vw, 1rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.HOME .HERO h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    padding: 0 1rem;
}

.HOME .HERO h4 {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    padding: 0 1rem;
}

.HOME .BODY h1 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-border);
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.BODY_CARDS {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: 2rem;
}

.CARD {
    background-color: var(--color-bg-secondary);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 12px;
    border-top: 4px solid var(--color-success);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.CARD:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(3, 255, 128, 0.2);
}

.CARD img {
    width: 50px;
    height: 50px;
    background-color: var(--color-success);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.CARD h2 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 0.5rem;
}

.CARD p {
    color: var(--color-text-muted);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}


.CARD:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 18px rgba(0, 255, 200, 0.25);
}

/* --- 5. ABOUT US SECTION --- */
.ABOUT_US {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ABOUT_US .container {
    background-color: var(--color-bg-secondary);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 2rem);
}

.ABOUT_US h1 {
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    padding-bottom: 0.5rem;
}

.ABOUT_US hr {
    border: 0;
    height: 2px;
    background-color: var(--color-accent);
    width: clamp(100px, 20vw, 160px);
    margin-bottom: 1rem;
}

.ABOUT_US p {
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--color-text-light);
    line-height: 1.7;
}

.ABOUT_US p strong {
    color: var(--color-accent);
    font-weight: 900;
}

.ABOUT_US div:last-child {
    background-color: rgba(77, 144, 254, 0.1);
    border-left: 5px solid var(--color-accent);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 8px;
    margin-top: 1rem;
}

.ABOUT_US div:last-child h1 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-accent);
    font-style: italic;
    margin: 0;
}

/* --- 6. CONTACT SECTION --- */
.CONTACT {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.CONTACT hr {
    border: 0;
    height: 2px;
    background-color: var(--color-success);
    width: clamp(150px, 30vw, 250px);
    margin: 1rem auto 2rem;
}

.CONTACT h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.CONTACT>p {
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    padding: 0 1rem;
}

.CONTACT .MEDIA {
    display: flex;
    width: 100%;
    max-width: 300px;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-bg-secondary);
    padding: clamp(1.5rem, 3vw, 2rem);
    margin: 1rem;
    border-radius: 12px;
    border-top: 4px solid var(--color-success);
    transition: background-color 0.3s;
}

.CONTACT .MEDIA:hover {
    background-color: #2c2c2c;
}

.CONTACT .MEDIA img {
    width: 40px;
    height: 40px;
    background-color: var(--color-success);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.CONTACT .MEDIA h1 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 0.5rem;
}

.CONTACT .MEDIA a {
    color: var(--color-success);
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    word-break: break-word;
}

/* --- 7. ORDER FORM SECTION --- */
.ORDER {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ORDER .form_body {
    background-color: var(--color-bg-secondary);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5), 0 0 0 4px var(--color-accent);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.ORDER .form_body h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
}

.ORDER .form_body p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.FORM {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.FORM_SEGEMENT h5,
.FORM_SEGMENT h5 {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.FORM_SEGEMENT h5 span,
.FORM_SEGMENT h5 span {
    color: #CF6679;
}

.FORM_SEGEMENT h3,
.FORM_SEGMENT h3 {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.FORM_SEGEMENT input[type="text"],
.FORM_SEGEMENT input[type="email"],
.FORM_SEGEMENT input[type="tel"],
.FORM_SEGEMENT textarea,
.FORM_SEGEMENT select,
.FORM_SEGMENT input[type="checkbox"] {
    padding: 0.75rem;
    background-color: var(--color-border);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.FORM_SEGEMENT input[type="text"],
.FORM_SEGEMENT input[type="email"],
.FORM_SEGEMENT input[type="tel"],
.FORM_SEGEMENT textarea,
.FORM_SEGEMENT select {
    width: 100%;
    margin-bottom: 1rem;
}

.FORM_SEGMENT input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.FORM_SEGMENT span {
    color: var(--color-text-light);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.FORM_SEGEMENT input:focus,
.FORM_SEGEMENT textarea:focus,
.FORM_SEGEMENT select:focus {
    border-color: var(--color-success);
    outline: none;
    box-shadow: 0 0 0 2px rgba(3, 255, 128, 0.5);
}

.FORM_SEGEMENT textarea {
    resize: vertical;
    min-height: 100px;
}

.FORM_SEGEMENT h6 {
    font-size: clamp(0.7rem, 1.5vw, 0.75rem);
    color: var(--color-text-muted);
    margin-top: -0.5rem;
    margin-bottom: 0;
}

.FORM hr {
    border: none;
    height: 1px;
    background-color: var(--color-border);
    margin: 1.5rem 0;
}

.SEND {
    text-align: center;
    margin-top: 1rem;
}

.SUBMIT {
    width: 100%;
    padding: clamp(0.7rem, 2vw, 0.8rem);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 700;
    background-color: var(--color-success);
    color: var(--color-bg-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(3, 255, 128, 0.4);
}

.SUBMIT:hover {
    background-color: #03a08d;
    box-shadow: 0 6px 15px rgba(3, 255, 128, 0.6);
}

/* --- 8. FOOTER --- */
footer {
    background-color: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.FOOTER_LEFT h1 {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 400;
    color: var(--color-text-muted);
    margin: 0;
}

.FOOTER_RIGHT {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.FOOTER_RIGHT a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.FOOTER_RIGHT a:hover {
    color: var(--color-accent);
}

/* Default Hidden Sections */
.ABOUT_US {
    display: none;
}

.CONTACT {
    display: none;
}

.ORDER {
    display: none;
}

/* --- 9. MEDIA QUERIES (RESPONSIVENESS) --- */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
    section {
        padding: 2rem 4%;
    }

    .HOME .HERO {
        padding: 3rem 0;
    }

    .BODY_CARDS {
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
        gap: 1.5rem;
    }

    .ABOUT_US .container {
        padding: 2rem;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .HAMBURGER {
        display: flex;
    }

    .NAV_RIGHT {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: var(--color-bg-secondary);
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
        border-top: 1px solid var(--color-border);
        gap: 0;
    }

    .NAV_RIGHT.show {
        display: flex;
    }

    .NAV_RIGHT button {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        margin-bottom: 0.5rem;
    }

    .NAV_RIGHT .ORD {
        margin-top: 0.5rem;
    }

    section {
        padding: 1.5rem 4%;
        min-height: calc(100vh - 100px);
    }

    .HOME .HERO {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .HOME .BODY h1 {
        margin-bottom: 1.5rem;
    }

    .BODY_CARDS {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ABOUT_US .container {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .CONTACT {
        min-height: auto;
    }

    .CONTACT .MEDIA {
        margin: 1rem 0;
        max-width: 100%;
    }

    .ORDER .form_body {
        padding: 1.5rem;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .FOOTER_LEFT h1 {
        margin-bottom: 0.5rem;
    }

    .FOOTER_RIGHT {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

}

@media (max-width: 600px) {


    .HOME .HERO h3 {
    color: var(--color-accent);
    font-size: clamp(1.3rem, 1.5vw, 1rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    nav {
        padding: 0.75rem 4%;
    }

    .NAV_LEFT img {
        width: 35px;
        height: 35px;
    }

    section {
        padding: 1rem 3%;
    }

    .HOME .HERO {
        padding: 1.5rem 0;
    }

    .BODY_CARDS {
        gap: 1rem;
    }

    .CARD {
        padding: 1rem;
    }

    .ABOUT_US .container {
        padding: 1rem;
    }

    .ORDER .form_body {
        padding: 1rem;
    }

    .FORM_SEGEMENT input[type="text"],
    .FORM_SEGEMENT input[type="email"],
    .FORM_SEGEMENT input[type="tel"],
    .FORM_SEGEMENT textarea,
    .FORM_SEGEMENT select {
        padding: 0.6rem;
    }

    footer {
        padding: 1rem 3%;
    }
}

/* Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    section {
        padding: 3rem 5%;
    }

    .HOME .HERO {
        padding: 5rem 0;
    }

    .BODY_CARDS {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Landscape Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
    section {
        min-height: auto;
        padding: 1rem 5%;
    }

    .HOME .HERO {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }

    .ABOUT_US .container {
        padding: 1.5rem;
    }

    .CONTACT {
        min-height: auto;
    }
}