* {
    box-sizing: border-box;
}

body {
    margin:0;
    font-family:'Poppins', sans-serif;
    background:#0b1c26;
    color:white;
}


/* HEADER */
/* HEADER FIX */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #000;
}

/* LEFT LOGO AREA */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area {
    background: rgba(255,255,255,0.05);
    padding: 6px 10px;
    border-radius: 8px;
}

.logo-area img {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.3));
}

.logo-area img {
    width: 120px;   /* bigger */
    height: auto;
    object-fit: contain;
}

.logo-area img {
    padding: 4px;
    border-radius: 6px;
}
.company-text h2 {
    font-size: 20px;
    margin: 0;
}

.company-text p {
    font-size: 11px;
    margin: 0;
}




/* TEXT */
.logo-text h1,
.logo-text .site-title {
    font-size: 26px;
    margin: 0;
    color: white;
    font-weight: 700;
}

.logo-text span {
    color: #ff8c00;
}

.logo-text p {
    font-size: 11px;
    opacity: 0.6;
    margin: 0;
}

/* NAV CENTER */
.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* NAV LINKS */
.nav a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    transition: 0.3s;
}

/* HOVER COLOR */
.nav a:hover {
    color: #ff8c00;
}

.nav a.active {
    color: #ff8c00;
}

/* UNDERLINE EFFECT */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #ff8c00;
    transition: 0.3s;
}

/* ANIMATE LINE */
.nav a:hover::after {
    width: 100%;
}

.nav a.active::after {
    width: 100%;
}

.nav-item {
    position: relative;
}

.dropdown-toggle {
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 245px;
    max-width: calc(100vw - 40px);
    padding: 10px;
    background: #071a24;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: #fff;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255,140,0,0.14);
    color: #ff8c00;
}

/* SOCIAL RIGHT */
.social {
    display: flex;
    gap: 10px;
}

.social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: white;
    font-size: 14px;
}

/* COLORS */
.social a:nth-child(1) { background: #E1306C; }
.social a:nth-child(2) { background: #1877F2; }
.social a:nth-child(3) { background: #0A66C2; }
.social a:nth-child(4) { background: #FF0000; }

/* HERO */

.hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
}





.hero h1 {
    font-size:48px;
    line-height:1.2;
    
}

.hero h1 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero span {
    color:#ff8c00;
}

.hero p {
    margin-top:10px;
    opacity:0.8;
}
.hero h1 {
    font-size: 52px;
    font-weight: bold;
    line-height: 1.2;
}

.hero span {
    color: #ff8c00;
}

.hero p {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.8;
}

/* BUTTON */
.btn {
    background: linear-gradient(45deg,#ff8c00,#ffaa33);
    color: black;
    font-weight: bold;
    padding: 14px 32px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,140,0,0.5);
}
/* SECTION */
.section {
    padding:90px 20px;
    text-align:center;
}

.section-dark {
    background:#081821;
}

/* GRID */
.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

/* CARD PREMIUM */
.card {
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.1);
    padding:30px;
    border-radius:12px;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,198,255,0.3);
}

/* CONTACT LINKS */
.section a {
    color:#00c6ff;
    text-decoration:none;
}

/* FOOTER */
.footer {
    padding:30px;
    text-align:center;
    background:#071a26;
}

/* WHATSAPP */
/* MAIN BUTTON */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;

    height: 60px;
    padding: 0 18px;
    background: #25D366;

    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    z-index: 1000;

    box-shadow: 0 0 20px rgba(37,211,102,0.5);
    transition: 0.3s;

    animation: float 2s infinite ease-in-out;
}



@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}





/* FLOAT */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* TEXT (hidden initially) */
.wa-text {
    color: white;
    font-size: 14px;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: 0.3s;
}

/* EXPAND ON HOVER */
.whatsapp:hover .wa-text {
    opacity: 1;
    width: auto;
}

/* BUTTON HOVER */
.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37,211,102,0.9);
}

/* RED NOTIFICATION DOT */
.wa-dot {
    position: absolute;
    top: 8px;
    right: 8px;

    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;

    animation: pulse 1.5s infinite;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% { transform: scale(1); opacity:1; }
    50% { transform: scale(1.6); opacity:0.5; }
    100% { transform: scale(1); opacity:1; }
}



/* IMAGE GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    margin-top: 30px;
}

/* IMAGE BOX */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* 👈 CHANGE */
    background: #0b1c24;   /* 👈 FILL EMPTY SPACE */
    display: block;
    transition: 0.4s;
}

/* IMAGE STYLE */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: 0.4s;
}

/* HOVER EFFECT */
.img-box:hover img {
    transform: scale(1.1);
}





/*next edit with galary*/

.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.img-box a {
    display: block;
    position: relative;
}

/* OVERLAY */
.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    opacity: 0;
    transition: 0.4s;
}

/* TEXT */
.img-overlay h3 {
    margin: 0;
    font-size: 16px;
}

/* HOVER EFFECT */
.img-box:hover .img-overlay {
    opacity: 1;
}




.img-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}


/*end galary edit*/


/*latest gallery*/


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    background: #0b1c24;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    display: block;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 20px;
    background: #0b1c24;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* bottom info */
.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
}

.product-info .arrow {
    font-size: 18px;
    opacity: 0.7;
}




















/* FORM */
/* FORM CONTAINER */
.contact-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);

    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INPUT STYLE */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00c6ff;
    box-shadow: 0 0 10px rgba(0,198,255,0.4);
}

/* BUTTON */
.contact-form button {
    padding: 14px;
    background: linear-gradient(45deg, #ff8c00, #ffaa33);
    color: black;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,140,0,0.5);
}

.contact-form {
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


/* FOOTER MAIN */
.footer {
    background: linear-gradient(180deg, #071a26, #031018);
    padding: 50px 20px 20px;
    color: white;
}

/* CONTAINER */
.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

/* BOX */
.footer-box h3,
.footer-box h4 {
    margin-bottom: 10px;
}

.footer-box p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

/* LINKS */
.footer-box a {
    color: #00c6ff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #ff8c00;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.6;
}

.footer-box h3 {
    color: #ff8c00;
}



/* SOCIAL ICONS */
/* SOCIAL CONTAINER */
.social {
    display: flex;
    gap: 12px;
}

/* ICON BASE */
.social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
    color: white;
    font-size: 16px;
    text-decoration: none;

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* INSTAGRAM */
.social a:nth-child(1) {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
}

/* FACEBOOK */
.social a:nth-child(2) {
    background: #1877F2;
}

/* LINKEDIN */
.social a:nth-child(3) {
    background: #0A66C2;
}

/* YOUTUBE */
.social a:nth-child(4) {
    background: #FF0000;
}

/* HOVER EFFECT */
.social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* GLOW ANIMATION */
.social a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    top: -100%;
    left: 0;
    transition: 0.4s;
}

/* LIGHT SWEEP */
.social a:hover::before {
    top: 100%;
}




/* STRIP */
.feature-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -40px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* BOX */
.feature-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 14px;
    color: white;

    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

/* HOVER */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}




/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    /* HEADER */
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
    }

    .nav-item.dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: auto;
    }

    .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 8px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        white-space: normal;
    }

    .social {
        align-self: flex-end;
    }

    /* HERO */
    .hero {
        text-align: center;
        padding: 40px 20px;
        height: auto;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    /* FEATURE STRIP */
    .feature-strip {
        flex-direction: column;
        margin-top: 20px;
    }

    .feature-box {
        width: 100%;
        text-align: center;
    }

    /* GRID (SERVICES & IMAGES) */
    .grid,
    .image-grid {
        grid-template-columns: 1fr;
    }

    /* FORM */
    .contact-form {
        padding: 20px;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

@media(max-width:768px) {

.hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 32px;
}

.hero-buttons {
    flex-direction: column;
}
}


/* HERO */
.hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

/* SLIDER */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* EACH IMAGE */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* ACTIVE IMAGE */
.slide.active {
    opacity: 1;
    z-index: 1;
}


/* ZOOM EFFECT */
.slide {
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 1; 
}

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: white;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.slider-dots span.active {
    opacity: 1;
    background: #ff8c00;
}

/* ARROWS */
.slider-arrows span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
}

.slider-arrows span:first-child {
    left: 20px;
}

.slider-arrows span:last-child {
    right: 20px;
}








/* ===== HERO LAYER FIX ===== */

.hero {
    position: relative;
}

/* SLIDER IMAGE */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease-in-out;

    z-index: 1; /* BACK */
}

.slide.active {
    opacity: 1;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    top: 0;
    left: 0;

    z-index: 5; /* MIDDLE */
}

/* TEXT + BUTTON */
.hero-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    color: white;

    z-index: 10; /* FRONT */
}











/* HERO CONTENT POSITION */
.hero-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 500px;
}

/* HEADING */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content span {
    color: #ff8c00;
}

/* TEXT */
.hero-content p {
    margin: 20px 0;
    font-size: 16px;
    opacity: 0.9;
}

/* BUTTONS CONTAINER */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #ff8c00;
    color: black;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ffaa33;
}

/* SECONDARY BUTTON */
.btn-secondary {
    border: 1px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
}







.hero-content {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}






section {
    padding: 90px 20px;
}
section:nth-child(even) {
    background: #111;
}
.service-box {
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.image-grid img {
    transition: 0.4s;
}

.image-grid img:hover {
    transform: scale(1.05);
}
.contact-form input,
.contact-form textarea {
    border: none;
    outline: none;
    padding: 12px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
}

.contact-form button {
    background: #ff8c00;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}


#contact {
    scroll-margin-top: 100px;
}


/* FORM BOX */
.contact-form {
    max-width: 600px;
    margin: auto;
    padding: 40px;
    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;

    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.03);
    color: white;

    transition: 0.3s;
}

/* FOCUS EFFECT on contact and mobiles */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 10px rgba(255,140,0,0.5);
}
.contact-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;

    background: linear-gradient(45deg, #ff8c00, #ffaa33);
    color: black;
    font-weight: bold;

    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,140,0,0.4);
}
#contact {
    background: radial-gradient(circle at center, #0b2a33, #051820);
}
#contact h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

#contact p {
    opacity: 0.8;
}

/* FOOTER TEXT HOVER */
.footer p,
.footer a {
    transition: all 0.3s ease;
}

/* PHONE / EMAIL HOVER */
.footer a:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

/* ADDRESS HOVER */
.footer p:hover {
    color: #00ffcc;
    transform: translateX(5px);
}

/* OPTIONAL: ADD GLOW EFFECT */
.footer a:hover,
.footer p:hover {
    text-shadow: 0 0 8px rgba(255,140,0,0.6);
}

.footer a {
    position: relative;
}

.footer a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ff8c00;
    bottom: -3px;
    left: 0;
    transition: 0.3s;
}

.footer a:hover::after {
    width: 100%;
}






/* top bottom buttons */
.scroll-buttons {
    position: fixed;
    left: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

/* BUTTON */
.scroll-buttons {
    position: fixed;
    left: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

/* ACTIVE STATE */
.scroll-buttons.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-btn {
    min-width: 92px;
    min-height: 38px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ff8c00;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.32);
    transition: 0.3s;
}

/* HOVER */
.scroll-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(255,140,0,0.6);
}


/* ===== FINAL MOBILE POLISH ===== */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 14px;
    }

    .header {
        padding: 12px 16px;
        align-items: center;
        gap: 14px;
    }

    .logo-area {
        width: 100%;
        justify-content: center;
        gap: 8px;
        padding: 8px;
    }

    .logo-area img {
        width: 74px;
        padding: 2px;
    }

    .logo-text h1,
    .logo-text .site-title {
        font-size: 20px;
        line-height: 1.12;
    }

    .logo-text p {
        font-size: 9px;
        line-height: 1.35;
        opacity: 0.72;
    }

    .nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 8px 14px;
    }

    .nav a {
        font-size: 14px;
        padding: 8px 3px;
    }

    .nav-item.dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        display: inline-block;
    }

    .dropdown-menu {
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
        border-radius: 8px;
        background: #071a24;
        box-shadow: none;
    }

    .dropdown-menu a {
        padding: 12px;
        text-align: left;
        white-space: normal;
    }

    .social {
        width: 100%;
        justify-content: center;
        align-self: center;
        gap: 10px;
    }

    .social a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .hero {
        height: 540px;
        min-height: 540px;
        padding: 0;
        text-align: center;
    }

    .slide {
        object-position: center;
    }

    .hero-overlay {
        background: rgba(0,0,0,0.72);
    }

    .hero-content {
        left: 16px;
        right: 16px;
        max-width: none;
        text-align: center;
    }

    .hero-content h1,
    .hero h1 {
        font-size: 32px;
        line-height: 1.16;
        margin-bottom: 12px;
    }

    .hero-content p,
    .hero p {
        font-size: 14px;
        line-height: 1.55;
        margin: 14px 0;
    }

    .hero-buttons {
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 13px 18px;
        text-align: center;
    }

    .slider-arrows span {
        font-size: 22px;
        padding: 8px;
    }

    .slider-arrows span:first-child {
        left: 8px;
    }

    .slider-arrows span:last-child {
        right: 8px;
    }

    .feature-strip {
        margin-top: 0;
        padding: 22px 16px 0;
    }

    .feature-box {
        padding: 14px 16px;
    }

    .section,
    section {
        padding: 58px 16px;
    }

    .section h2 {
        font-size: 26px;
        line-height: 1.24;
    }

    .section p {
        line-height: 1.65;
    }

    .grid,
    .product-grid,
    .image-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card {
        padding: 22px;
        border-radius: 8px;
    }

    .product-grid {
        margin-top: 28px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-card img {
        height: 190px;
        padding: 16px;
    }

    .product-info {
        padding: 14px 16px;
        gap: 12px;
        font-size: 14px;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 22px 16px;
        border-radius: 8px;
    }

    .footer {
        padding: 38px 16px 18px;
    }

    .footer-container {
        gap: 24px;
    }

    .footer-box p {
        font-size: 13px;
        line-height: 1.55;
    }

    .whatsapp {
        right: 14px;
        bottom: 16px;
        height: 52px;
        padding: 0 14px;
    }

    .whatsapp .wa-text {
        display: none;
    }

    .scroll-buttons {
        left: 12px;
        bottom: 16px;
        gap: 8px;
    }

    .scroll-btn {
        min-width: 76px;
        min-height: 34px;
        padding: 8px 10px;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .logo-area img {
        width: 64px;
    }

    .logo-text h1,
    .logo-text .site-title {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 8px;
    }

    .nav {
        gap: 6px 11px;
    }

    .nav a {
        font-size: 13px;
    }

    .hero {
        height: 510px;
        min-height: 510px;
    }

    .hero-content h1,
    .hero h1 {
        font-size: 28px;
    }
}
