body {
    margin: 0;
    color: white;
}

/* BACKGROUND IMAGE FIXED */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url('imgs/bg1.png');
    background-size: cover;
    background-position: center;

    z-index: -2;
}

/* DARK OVERLAY */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.45);

    z-index: -1;
}

.catch-phrase {
    font-family: 'Dancing Script', cursive;
    color: #ffcc00;
    font-size: 44px;
}

/* NAVBAR */
.navbar-custom {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 10px 0;
    transition: 0.4s;
    z-index: 1000;
}

.navbar-custom.scrolled {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
}

.navbar-custom .container{
    display:flex;
    align-items:center;
    position:relative;
}

/* LOGO */
.logo{
    z-index:2;
}

/* CENTER LINKS ONLY */
.nav-links{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* NORMAL LINKS */
.nav-links a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    transition:.3s;
    font-size: 18px;
}

.nav-links a:hover{
    color:#f4c400;
}

/* ORDER BUTTON */
.order-btn{
    position:absolute;
    right:0;

    background:#f4c400;
    color:black !important;

    padding:10px 18px;
    border-radius:30px;
    font-weight:700;
}

.order-btn:hover{
    background:white;
}

/* MOBILE */
@media(max-width:992px){

.nav-links{
    flex-wrap:wrap;
}

.order-btn{
    position:static;
}
}

/* HERO */
.hero {
    min-height: 75vh;
    padding: 120px 0;
}

/* GLASS EFFECT */
.glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 15px;
}

/* PLATE */
.plate {
    max-width: 520px;
    width: 100%;
    aspect-ratio: 520 / 110;

    background: #f4c400;
    color: black;

    border: 6px solid black;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5px;

    font-weight: 600;
}

.type-btn {
    margin: 4px;
}

.plate-note {
    font-size: 12px;
    margin-top: 8px;
    opacity: 0.7;
    text-align: center;
}

.left, .right {
    font-size: 72px;
}

.center {
    font-size: 72px;
    flex: 1;
    text-align: center;
}

/* SECTIONS */
.section-dark {
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    padding: 80px 0;
}

.section-light {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 80px 0;
    color: white;
}

/* PRODUCTS */
.product-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
}

/* STACK IMAGES */
.stack-images {
    position: relative;
    height: 200px;
}

.stack-images img {
    position: absolute;
    width: 120px;
}

/* FOOTER */
.footer {
    background: black;
    padding: 20px;
    text-align: center;
}

/* SOCIAL */
.social {
    display: flex;
    align-items: center;
    gap: 8px;

    color: black;
    text-decoration: none;
    margin: 6px 0;

    font-weight: 500;
}

.social i {
    font-size: 18px;
    color: #000;
}

.why-list {
    margin-top: 15px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 8px 0;
    font-size: 16px;
}

.why-item i {
    font-size: 20px;
    color: #f4c400; /* gold highlight */
}

/* MAIN SPLIT CARD */
.split-card {
    display: flex;
    width: 100%;
    min-height: 350px;

    border-radius: 15px;
    overflow: hidden;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* LEFT SIDE (BLACK GLASS) */
.split-right {
    flex: 1;
    padding: 30px;

    background: rgba(0,0,0,0.55);
    color: white;
}

/* RIGHT SIDE (WHITE GLASS) */
.split-left {
    flex: 1;
    padding: 30px;

    background: rgba(255,255,255,0.15);
    color: white;
}

/* STEPS */
.step {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 10px 0;
}

/* WHY ITEMS */
.why-item {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 10px 0;
}

/* ICON COLOR */
.split-card i {
    color: #f4c400;
    font-size: 18px;
}

.how-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    flex-wrap: wrap;
}

.how-box {
    flex: 1;
    min-width: 200px;

    text-align: center;

    padding: 20px;
    border-radius: 12px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    transition: 0.3s;
}

.how-box:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
}

.how-box i {
    font-size: 30px;
    color: #f4c400;
    margin-bottom: 10px;
}

.how-box h5 {
    margin: 5px 0;
    font-weight: 700;
}

.how-box p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
}

/* MAIN GLASS CARD */
.info-card {
    display: flex;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 15px;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* EACH COLUMN */
.info-box {
    flex: 1;
    padding: 30px;
    color: white;
}

/* YELLOW DIVIDER STRIPES */
.info-box:not(:last-child) {
    border-right: 4px solid #f4c400;
}

/* ICONS */
.info-box i {
    color: #f4c400;
}

/* SOCIAL LINKS */
.social {
    display: flex;
    gap: 8px;
    color: white;
    text-decoration: none;
    margin: 6px 0;
}

.social i {
    color: #f4c400;
}

/* CONTACT ITEMS */
.contact-item {
    display: flex;
    gap: 10px;
    margin: 6px 0;
}

.plate.standard {
    background: #f4c400;
    color: black;
}

.plate.personalized {
    background: #ffffff;
    color: black;
    font-style: italic;
    border: 6px solid #222;
}

.plate.commercial {
    background: #ffcc00;
    color: black;
    border: 6px solid #111;
}


.na-flag {
    width: 46px;
    height: 36px;
    object-fit: cover;
    border-radius: 2px;
}

.na-text {
    font-weight: 600;
    font-size: 68px;
    letter-spacing: 1px;
}

#customText {
    font-size: clamp(28px, 4vw, 70px);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;

    display: inline-block;

    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;

    text-align: center;
}

/* keep NA block locked to the right side */
.na-block {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-left: auto;
}

/* ORDER BUTTON */
.order-btn{
    margin-left:25px;

    background:#f4c400;
    color:black !important;

    padding:10px 20px;
    border-radius:30px;

    font-weight:700;
    text-decoration:none;

    transition:.3s;
}

.order-btn:hover{
    background:white;
    transform:translateY(-3px);
}

.order-btn i{
    margin-right:6px;
}

/* MOBILE */
@media(max-width:768px){

.nav-links{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.order-btn{
    margin-left:0;
}
}

/* =========================================
   MOBILE RESPONSIVE FIXES
========================================= */

@media (max-width: 992px){

    /* NAVBAR */
    .navbar-custom .container{
        flex-direction: column;
        gap: 15px;
    }

    .nav-links{
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links a{
        margin: 5px 10px;
        font-size: 16px;
    }

    .order-btn{
        position: static;
        margin-top: 10px;
    }

    /* HERO */
    .hero{
        padding-top: 180px;
        text-align: center;
    }

    .hero h1{
        font-size: 42px;
    }

    .catch-phrase{
        font-size: 34px;
    }

    .glass{
        margin-top: 40px;
    }

    /* SPLIT CARD */
    .split-card{
        flex-direction: column;
    }

    .split-left,
    .split-right{
        width: 100%;
    }

    /* INFO CARD */
    .info-card{
        flex-direction: column;
    }

    .info-box:not(:last-child){
        border-right: none;
        border-bottom: 4px solid #f4c400;
    }

    /* HOW BOXES */
    .how-horizontal{
        flex-direction: column;
    }

    .how-box{
        min-width: 100%;
    }
}


/* PHONE FIXES */
@media (max-width: 768px){

    /* HERO */
    .hero{
        min-height: auto;
        padding: 160px 0 80px;
    }

    .hero h1{
        font-size: 32px;
        line-height: 1.2;
    }

    .catch-phrase{
        font-size: 28px;
    }

    .hero p{
        font-size: 15px;
    }

    /* PLATE */
    .plate{
        border-width: 4px;
        padding: 0 6px;
    }

    .left,
    .right{
        font-size: 34px;
    }

    .center{
        font-size: 34px;
    }

    .na-text{
        font-size: 30px;
    }

    .na-flag{
        width: 28px;
        height: 22px;
    }

    #customText{
        font-size: 22px;
    }

    /* BUTTONS */
    .type-btn{
        width: 100%;
        margin-bottom: 10px;
    }

    /* PRODUCTS */
    .product-card{
        text-align: center;
    }

    /* CONTACT */
    .contact-item{
        flex-direction: row;
        align-items: flex-start;
    }

    /* FOOTER */
    .footer{
        font-size: 14px;
    }
}


/* EXTRA SMALL DEVICES */
@media (max-width: 480px){

    .hero h1{
        font-size: 26px;
    }

    .catch-phrase{
        font-size: 24px;
    }

    .nav-links a{
        font-size: 14px;
    }

    .logo{
        font-size: 20px;
        text-align: center;
    }

    .glass{
        padding: 15px;
    }

    .split-left,
    .split-right,
    .info-box{
        padding: 20px;
    }

    .how-box{
        padding: 15px;
    }
}