/* ==================================================
GLOBAL STYLES
================================================== */

:root {
    --primary-color: #253a4b; /* Deep Blue */
    --secondary-color: #2b2a2b; /* Dark Grey */
    --accent-color: #c89b3c; /* Gold/Amber - kept from original for accent, can be replaced if a new accent is desired */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #121212;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --transition-speed: 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--background-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================================================
TYPOGRAPHY
================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1em;
}

/* ==================================================
BUTTONS
================================================== */
.btn,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:15px 32px;

    font-size:1rem;
    font-weight:600;

    border-radius:12px;

    transition:all .3s ease;

    text-decoration:none;
    cursor:pointer;
}

/* PRIMARY BUTTON */

.btn{
    background:var(--primary-color);
    color:var(--text-light);
    border:2px solid var(--primary-color);

    box-shadow:
    0 10px 25px rgba(37,58,75,.25);
}

.btn:hover{
    background:var(--secondary-color);
    border-color:var(--secondary-color);

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.20);
}

/* OUTLINE BUTTON */

.btn-outline{
    background:rgba(255,255,255,.08);
    color:var(--text-light);

    border:2px solid rgba(255,255,255,.25);

    backdrop-filter:blur(8px);
}

.btn-outline:hover{
    background:#ffffff;
    color:var(--primary-color);

    border-color:#ffffff;

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.20);
}
@media(max-width:768px){

    .btn,
    .btn-outline{
        width:100%;
    }

}

/* ==================================================
TOPBAR
================================================== */

.topbar-global {
    background: var(--secondary-color);
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 10px 0;
}

.topbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-switch a {
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.75rem;
    transition: var(--transition-speed);
}

.lang-switch a:hover {
    background: var(--primary-color);
}

/* ==================================================
NAVBAR
================================================== */

nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.nav-wrapper {
    width: 90%;
    max-width: 1300px;
    height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.logo img {
    height: 55px;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 12px 0;
    transition: var(--transition-speed);
}

.main-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.main-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--text-light);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    display: none;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.main-menu .submenu li {
    margin: 0;
    padding: 0;
}

.main-menu .submenu a {
    display: block;
    padding: 12px 18px;
    color: var(--text-dark);
    transition: var(--transition-speed);
    font-weight: 400;
}

.main-menu .submenu a:hover {
    background: var(--background-light);
    padding-left: 24px;
    color: var(--primary-color);
}

.main-menu .dropdown:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Mega Menu */
.mega-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: -220px; /* Adjust as needed */
    width: 760px;
    background: var(--text-light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow-medium);
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.has-mega:hover .mega-menu {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.mega-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.mega-box a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.mega-box a:hover {
    color: var(--primary-color);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ==================================================
HERO SECTION
================================================== */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 58, 75, 0.88), rgba(43, 42, 43, 0.78)), url('/assets/images/hero.jpg'); /* Using brand colors */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: var(--text-light);
}

 .hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,.10) 100%
    );
}
.hero-grid {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-size:.82rem;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    backdrop-filter:blur(10px);
}

.hero h1{
    font-size:clamp(2.8rem,5vw,4.5rem);
    line-height:1.05;
    font-weight:800;
    margin-bottom:24px;
    letter-spacing:-1px;
}


.hero p{
    max-width:700px;
    font-size:1.15rem;
    line-height:1.8;
    color:rgba(255,255,255,.88);
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.hero-stats div {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 14px;
    min-width: 110px;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.hero-stats span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.hero-card{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    padding:28px;
    border-radius:24px;
    box-shadow:
    0 25px 60px rgba(0,0,0,.20);
    transition:.35s ease;
}

.hero-card:hover{
    transform:translateY(-8px);
}

.hero-card img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:18px;
}

.hero-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.hero-card p {
    color: #6b7280; /* Keeping original for now, can be adjusted */
}
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(
        circle at top right,
        rgba(255,255,255,.08),
        transparent 45%
    );
    pointer-events:none;
}
@media(max-width:991px){

    .hero{
        min-height:auto;
        padding:120px 0 80px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .hero h1{
        font-size:2.6rem;
    }

    .hero-card img{
        height:320px;
    }

}

@media(max-width:768px){

    .hero{
        padding:100px 0 60px;
    }

    .hero h1{
        font-size:2.1rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-actions{
        flex-direction:column;
    }

    .hero-actions .btn,
    .hero-actions .btn-outline{
        width:100%;
        text-align:center;
    }

}




/* ==================================================
GENERIC CARDS & GRIDS
================================================== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--text-light);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px var(--shadow-light);
    transition: var(--transition-speed);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card p {
    color: #6b7280; /* Keeping original for now, can be adjusted */
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* ==================================================
ABOUT SECTION
================================================== */

.about-section {
    padding: 100px 0;
    background: var(--background-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-grid img {
    border-radius: 14px;
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stats div {
    flex: 1;
    background: var(--background-light);
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.stats h3 {
    color: var(--primary-color);
    font-size: 2rem;
}

/* ==================================================
PRODUCT SECTIONS
================================================== */

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('/assets/images/cabins/modern_cabin.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-header p {
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    display: block;
    color: var(--text-dark);
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow-light);
    transition: var(--transition-speed);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card .content {
    padding: 25px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.95rem;
    color: #6b7280; /* Keeping original for now, can be adjusted */
}

.about-products {
    padding: 100px 0;
    background: var(--background-light);
    text-align: center;
}

.about-products .section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-products .section-text {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555; /* Keeping original for now, can be adjusted */
    line-height: 1.7;
    font-size: 1.1rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.product-tags span {
    background: var(--text-light);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    transition: var(--transition-speed);
    color: var(--text-dark);
}

.product-tags span:hover {
    background: var(--primary-color);
    color: var(--text-light);
    cursor: default;
}

.catalog-box {
    display: flex;
    gap: 50px;
    align-items: center;
    background: var(--text-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.catalog-image img {
    width: 280px;
    border-radius: 10px;
}

.catalog-content {
    flex: 1;
}

.packages-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/package/complete_system.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    text-align: center;
    color: var(--text-light);
}

.packages-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.packages-section {
    padding: 100px 0;
    background: var(--background-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow-light);
    transition: var(--transition-speed);
    border: 1px solid var(--border-color);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.package-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.package-card p {
    color: #666; /* Keeping original for now, can be adjusted */
    line-height: 1.7;
}

.packages-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--primary-color);
    color: var(--text-light);
}

.packages-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.packages-cta p {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.packages-cta .btn {
    background: var(--text-light);
    color: var(--primary-color);
    font-weight: 700;
    padding: 16px 35px;
}

/* WHY DZM */

.why-dzm{
    padding:120px 0;
    background:#f8fafc;
}

.why-dzm .section-heading{
    max-width:700px;
    margin:0 auto 70px;
    text-align:center;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    border:1px solid #e5e7eb;

    text-align:center;

    transition:all .35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.why-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);
}

.why-card .icon{
    width:85px;
    height:85px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    color:#fff;

    font-size:2rem;
}

.why-card h3{
    font-size:1.3rem;
    margin-bottom:15px;
    color:var(--secondary-color);
}

.why-card p{
    color:#64748b;
    line-height:1.8;
    font-size:.95rem;
}
@media(max-width:1200px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card{
        padding:30px;
    }

}

/* ==========================================
   CATALOG SECTION
========================================== */

.catalog-download{
    padding:120px 0;
    background:
    linear-gradient(
        135deg,
        var(--secondary-color),
        #1f2937
    );
    overflow:hidden;
}

.catalog-download .about-split{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:80px;
    align-items:center;
}

/* TEXT */

.catalog-download .about-text h2{
    font-size:3rem;
    line-height:1.1;
    color:var(--text-light);
    margin-bottom:20px;
}

.catalog-download .about-text p{
    font-size:1.1rem;
    line-height:1.9;
    color:rgba(255,255,255,.85);
    margin-bottom:35px;
    max-width:650px;
}

/* IMAGE WRAPPER */

.catalog-download .about-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* GLOW EFFECT */

.catalog-download .about-image::before{
    content:"";

    position:absolute;

    width:380px;
    height:380px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(255,255,255,.12),
        transparent 70%
    );

    z-index:0;
}

/* CATALOG IMAGE */

.catalog-download .about-image img{
    position:relative;
    z-index:2;

    width:100%;
    max-width:420px;

    border-radius:20px;

    box-shadow:
    0 40px 80px rgba(0,0,0,.35),
    0 15px 30px rgba(0,0,0,.20);

    transform:
    perspective(1200px)
    rotateY(-10deg);

    transition:all .4s ease;
}

/* HOVER */

.catalog-download .about-image img:hover{

    transform:
    perspective(1200px)
    rotateY(-5deg)
    translateY(-12px);

    box-shadow:
    0 50px 100px rgba(0,0,0,.40),
    0 20px 40px rgba(0,0,0,.25);
}

/* BUTTON */

.catalog-download .btn{
    margin-top:10px;
}

/* MOBILE */

@media(max-width:991px){

    .catalog-download{
        padding:80px 0;
    }

    .catalog-download .about-split{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .catalog-download .about-text p{
        margin-left:auto;
        margin-right:auto;
    }

    .catalog-download .about-text h2{
        font-size:2.3rem;
    }

    .catalog-download .about-image img{
        max-width:300px;
        transform:none;
    }

}

@media(max-width:768px){

    .catalog-download .about-text h2{
        font-size:2rem;
    }

    .catalog-download .about-text p{
        font-size:1rem;
    }

}
.products-cta-banner {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: var(--text-light);
}

.products-cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.products-cta-banner p {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.products-cta-banner .btn {
    background: var(--text-light);
    color: var(--primary-color);
    font-weight: 700;
    padding: 16px 35px;
}

.products-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/assets/images/products-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0;
    text-align: center;
    color: var(--text-light);
}

.products-banner h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.products-banner p {
    max-width: 850px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================================================
CONTACT SECTION
================================================== */

.contact-section {
    padding: 100px 0;
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2,
.contact-form-box h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1rem;
    color: #555; /* Keeping original for now, can be adjusted */
}

.contact-form-box {
    background: var(--text-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--background-light);
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 58, 75, 0.2);
}

.contact-map {
    margin-top: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ==================================================
FOOTER
================================================== */

.footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: rgba(255, 255, 255, 0.7);
    padding-top: 70px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(37, 58, 75, 0.08); /* Using primary color with transparency */
    filter: blur(120px);
    top: -100px;
    left: -100px;
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(80px, 40px);
    }
}

.footer-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-box h3,
.footer-box h4 {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.footer-box p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-speed);
    display: inline-block;
    position: relative;
}

.footer-box ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition-speed);
}

.footer-box ul li a:hover {
    color: var(--text-light);
}

.footer-box ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
DYNAMIC FLOATING BUTTONS
================================================== */

.floating-buttons {
    position: fixed;
    right: 22px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99999;
}

.float {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 64px;
    height: 64px;
    padding: 0 18px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 12px 35px var(--shadow-medium);
    transition: var(--transition-speed);
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float i {
    width: 28px;
    font-size: 24px;
    text-align: center;
    flex-shrink: 0;
    color: var(--text-light);
}

.float span {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    white-space: nowrap;
    transition: var(--transition-speed);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
}

.float:hover {
    min-width: 220px;
    transform: translateY(-4px);
}

.float:hover span {
    max-width: 180px;
    opacity: 1;
}

/* WHATSAPP */
.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--text-light);
}

/* EMAIL */
.email {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

/* SHINE EFFECT */
.float::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: translateX(-100%);
    transition: 0.7s;
}

.float:hover::before {
    transform: translateX(100%);
}

/* ==================================================
TABLES
================================================== */

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    background: var(--text-light);
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
}

th {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 14px;
    font-size: 0.9rem;
    text-align: left;
}

td {
    padding: 14px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-dark);
}

tr:last-child td {
    border-bottom: none;
}

/* ==================================================
RTL SUPPORT
================================================== */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .main-menu {
    padding-right: 0;
}

html[dir="rtl"] .hero-grid,
html[dir="rtl"] .about-grid,
html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[dir="rtl"] .main-menu .submenu {
    left: auto;
    right: 0;
}

/* ==================================================
RESPONSIVE DESIGN
================================================== */

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .nav-wrapper {
        height: 80px;
        width: 92%;
    }
    .logo img {
        height: 42px;
    }
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    .main-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--text-light);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 15px 0;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 15px 40px var(--shadow-light);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-speed);
        pointer-events: none;
    }
    .main-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        display: flex;
    }
    .main-menu li {
        width: 100%;
    }
    .main-menu a {
        display: block;
        width: 100%;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-wrapper .btn {
        display: none;
    }
    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 10px 20px;
        background: var(--background-light);
        border-radius: 0;
        box-shadow: none;
        grid-template-columns: 1fr;
        opacity: 1;
        transform: translateY(0);
    }
    .has-mega.active .mega-menu {
        display: grid;
    }
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-card img {
        height: 260px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .footer {
        padding-top: 50px;
    }
    .footer-grid {
        gap: 30px;
        text-align: center;
    }
    .footer-box ul li a:hover {
        transform: none;
    }
    .catalog-box {
        flex-direction: column;
        text-align: center;
    }
    .catalog-image img {
        width: 100%;
        max-width: 250px;
    }
    .catalog-download .catalog-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .topbar-flex {
        justify-content: center;
        text-align: center;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-stats {
        gap: 12px;
    }
    .hero-stats div {
        min-width: 90px;
        padding: 14px;
    }
    /* FLOATING BUTTONS MOBILE */
    .floating-buttons {
        right: 14px;
        bottom: 18px;
    }
    .float {
        width: 58px;
        height: 58px;
        min-width: 58px;
        padding: 0;
        border-radius: 50%;
    }
    .float i {
        font-size: 22px;
    }
    .float:hover {
        width: 58px;
        min-width: 58px;
        transform: none;
    }
    .float span {
        display: none;
    }
    .products-banner h1 {
        font-size: 2.8rem;
    }
    .products-banner p {
        font-size: 1rem;
    }
    .packages-cta h2 {
        font-size: 2.2rem;
    }
    .catalog-download .catalog-box h2 {
        font-size: 2.2rem;
    }
    .products-cta-banner h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-tag {
        font-size: 0.7rem;
        padding: 8px 15px;
    }
    .hero-stats div {
        min-width: 80px;
        padding: 10px;
    }
    .hero-stats h3 {
        font-size: 1.5rem;
    }
    .hero-stats span {
        font-size: 0.7rem;
    }
    .product-card .content {
        padding: 15px;
    }
    .product-card h3 {
        font-size: 1.1rem;
    }
    .about-products .section-title {
        font-size: 1.8rem;
    }
    .packages-cta h2 {
        font-size: 1.8rem;
    }
    .catalog-download .catalog-box h2 {
        font-size: 1.8rem;
    }
    .products-cta-banner h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-box {
        text-align: center;
    }
    .footer-box ul li a::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-box ul li a:hover::after {
        width: 100%;
    }
}

/* ==================================================
UTILITIES
================================================== */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.section-padding {
    padding: 100px 0;
}

.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.section-subheading {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #6b7280;
}

/* Additional RTL support for text alignment */
html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .main-menu {
    align-items: flex-end;
}

html[dir="rtl"] .main-menu .submenu a:hover {
    padding-left: 18px;
    padding-right: 24px;
}

html[dir="rtl"] .footer-box ul li a::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .footer-box {
    text-align: right;
}

html[dir="rtl"] .footer-box ul li a:hover::after {
    left: auto;
    right: 0;
    transform: none;
}

html[dir="rtl"] .products-cta .btn {
    margin-left: auto;
    margin-right: auto;
}

html[dir="rtl"] .catalog-box {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-grid {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {
    html[dir="rtl"] .hero-actions {
        align-items: center;
    }
    html[dir="rtl"] .main-menu {
        align-items: flex-start;
    }
    html[dir="rtl"] .footer-box {
        text-align: center;
    }
    html[dir="rtl"] .footer-box ul li a::after {
        left: 50%;
        right: auto;
        transform: translateX(50%);
    }
    html[dir="rtl"] .catalog-box {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    html[dir="rtl"] .hero-actions {
        align-items: center;
    }
}
/* ==========================================
   STATS SECTION
========================================== */

.stats-section{
    padding:70px 0;
    background:#ffffff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:35px 20px;
    text-align:center;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.stat-box h3{
    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:10px;
}

.stat-box p{
    color:#6b7280;
    font-size:15px;
    margin:0;
}

/* ==========================================
   FACTORY SECTION
========================================== */

.factory-section{
    padding:100px 0;
    background:#f8fafc;
}

.factory-section .two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.factory-section h2{
    font-size:38px;
    margin-bottom:20px;
    color:var(--secondary);
}

.factory-section p{
    color:#4b5563;
    margin-bottom:25px;
    line-height:1.8;
}

.factory-section ul{
    list-style:none;
    padding:0;
}

.factory-section ul li{
    padding:10px 0;
    color:#111827;
    font-weight:500;
    border-bottom:1px solid #e5e7eb;
}

.factory-section img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* =========================================
   PREMIUM EXPORT WORLD MAP
========================================= */

.export-map-premium {
    padding: 90px 0;
    background: radial-gradient(circle at top, #0f172a, #050814);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.export-map-premium h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.export-map-premium p {
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
}

/* MAP WRAPPER */
.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 420px;
    margin: 0 auto 50px;
}

/* WORLD MAP BACKGROUND */
.world-map {
    position: absolute;
    inset: 0;
    background: url('/assets/images/world-map.png') center/contain no-repeat;
    opacity: 0.25;
    filter: grayscale(100%) brightness(1.2);
}

/* REGION BASE */
.region {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* PIN ANIMATION */
.pin {
    width: 14px;
    height: 14px;
    background: #2563eb;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 rgba(37, 99, 235, 0.7);
    animation: pulse 1.8s infinite;
}

.pin::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.4);
    top: -13px;
    left: -13px;
    animation: ripple 1.8s infinite;
}

/* LABEL */
.label {
    font-size: 13px;
    color: #e2e8f0;
}

/* POSITIONS (you can adjust later) */
.africa { bottom: 20%; left: 45%; }
.middle-east { bottom: 35%; left: 55%; }
.europe { top: 25%; left: 50%; }
.asia { top: 35%; right: 15%; }

/* COUNTRY TAGS */
.countries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.countries span {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.3s;
}

.countries span:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .map-wrapper {
        height: 300px;
    }

    .export-map-premium h2 {
        font-size: 28px;
    }
}
/* ==========================================
   CERTIFICATIONS
========================================== */

.certifications{
    padding:100px 0;
    background:#f8fafc;
    text-align:center;
}

.certifications h2{
    font-size:38px;
    margin-bottom:15px;
}

.certifications p{
    max-width:700px;
    margin:0 auto 50px;
    color:#6b7280;
}

.cert-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:800px;
    margin:auto;
}

.cert-grid img{
    width:100%;
    max-width:180px;
    margin:auto;
    display:block;
    background:#fff;
    padding:25px;
    border-radius:16px;
    border:1px solid #e5e7eb;
    transition:.3s;
}

.cert-grid img:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .factory-section .two-col{
        grid-template-columns:1fr;
        gap:40px;
    }

    .cert-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .stats-grid{
        grid-template-columns:1fr;
    }

    .cert-grid{
        grid-template-columns:1fr;
    }

    .factory-section,
    .export-map,
    .certifications{
        padding:70px 0;
    }

    .factory-section h2,
    .export-map h2,
    .certifications h2{
        font-size:30px;
    }

    .stat-box h3{
        font-size:34px;
    }

}
.trust-bar{
    background:var(--primary);
    padding:18px 0;
}

.trust-bar .container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.trust-bar span{
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.about-services{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
}

.about-services li{
    list-style:none;

    background:#f8fafc;

    padding:14px 22px;

    border-radius:12px;

    border:1px solid #e5e7eb;

    font-weight:600;

    color:var(--secondary-color);

    transition:.3s ease;
}

.about-services li:hover{
    transform:translateY(-4px);

    background:var(--primary-color);

    color:#fff;

    border-color:var(--primary-color);
}
.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.features > div{
    background:#ffffff;

    padding:30px;

    border-radius:18px;

    border:1px solid #e5e7eb;

    transition:.3s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.features > div:hover{
    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.features h3{
    font-size:1.2rem;

    margin-bottom:12px;

    color:var(--secondary-color);
}

.features p{
    color:#64748b;

    line-height:1.7;

    margin:0;
}

.about-services{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;
}

.about-services li{
    list-style:none;

    padding:12px 18px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:12px;

    font-weight:600;

    color:var(--secondary-color);
}

/* ===============================
   ABOUT PAGE - BRAND SYSTEM MATCHED
================================= */

.about-hero{
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--text-light);
    text-align: center;
}

.about-hero h1{
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-hero p{
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.85;
    line-height: 1.7;
}

/* ===============================
   ABOUT SECTION
================================= */

.about-section{
    padding: 90px 0;
    background: var(--text-light);
}

.about-grid{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-grid h2{
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-grid p{
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* image styling */
.about-grid img{
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 30px var(--shadow-light);
}

/* ===============================
   STATS
================================= */

.stats{
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stats div{
    background: var(--background-light);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 130px;
    transition: var(--transition-speed);
    border-top: 3px solid var(--accent-color);
}

.stats div:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

.stats h3{
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats span{
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.7;
}

/* ===============================
   WHY SECTION
================================= */

.why-dzm{
    padding: 100px 0;
    background: var(--background-light);
    text-align: center;
}

.why-dzm h2{
    font-size: 34px;
    color: var(--primary-color);
}

.why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.why-card{
    background: var(--text-light);
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 8px 20px var(--shadow-light);
    transition: var(--transition-speed);
    border-bottom: 3px solid transparent;
}

.why-card:hover{
    transform: translateY(-8px);
    border-bottom: 3px solid var(--accent-color);
}

.why-card h3{
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-card p{
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.75;
    line-height: 1.6;
}

/* ===============================
   PRODUCT TAGS
================================= */

.about-products{
    padding: 90px 0;
    background: var(--text-light);
    text-align: center;
}

.product-tags{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.product-tags span{
    background: var(--background-light);
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-speed);
}

.product-tags span:hover{
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.05);
}

/* ===============================
   VALUES
================================= */

.values{
    padding: 100px 0;
    background: var(--background-light);
    text-align: center;
}

.values-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.value-card{
    background: var(--text-light);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 20px var(--shadow-light);
    transition: var(--transition-speed);
}

.value-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.value-card h3{
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-card p{
    color: var(--text-dark);
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.6;
}

/* ===============================
   FAQ
================================= */

.faq-list{
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item{
    background: var(--text-light);
    padding: 22px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 15px var(--shadow-light);
    transition: var(--transition-speed);
    border-left: 3px solid transparent;
}

.faq-item:hover{
    border-left: 3px solid var(--accent-color);
    transform: translateX(5px);
}

.faq-item h3{
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.faq-item p{
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.75;
}

/* ===============================
   CTA
================================= */

.about-cta{
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--text-light);
    text-align: center;
}

.about-cta h2{
    font-size: 34px;
    margin-bottom: 15px;
}

.about-cta p{
    max-width: 750px;
    margin: 0 auto 25px;
    opacity: 0.85;
}

.about-cta .btn{
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-speed);
}

.about-cta .btn:hover{
    background: #e0b34d;
    transform: scale(1.05);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1024px){

    .about-grid{
        grid-template-columns: 1fr;
    }

    .why-grid,
    .values-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){

    .why-grid,
    .values-grid{
        grid-template-columns: 1fr;
    }

    .about-hero h1{
        font-size: 30px;
    }
}
.products-banner-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.products-banner-image h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.products-banner-image p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 10px 25px var(--shadow-light);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px var(--shadow-medium);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .content {
    padding: 18px;
}

.product-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--primary-color);
}

.product-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* WHY SECTION */
.why-dzm {
    background: #f7f9fb;
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.why-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px var(--shadow-light);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card .icon {
    font-size: 30px;
    margin-bottom: 10px;
}
/* ===============================
   PRODUCT CATALOG (PREMIUM STYLE)
================================= */

.product-catalog{
    padding: 80px 0;
    background: #f6f7f9;
}

.catalog-header{
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.catalog-header .subtitle{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.catalog-header h2{
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.catalog-header p{
    color: #555;
    font-size: 16px;
}

/* GRID */
.catalog-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.catalog-card{
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
}

.catalog-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.card-image{
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.catalog-card:hover img{
    transform: scale(1.1);
}

/* TAG */
.tag{
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(37, 58, 75, 0.9);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.tag.highlight{
    background: var(--accent-color);
}

/* CONTENT */
.card-content{
    padding: 20px;
}

.card-content h3{
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.card-content p{
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px){
    .catalog-header h2{
        font-size: 26px;
    }

    .card-image{
        height: 180px;
    }
}
/* =========================
   WHY SECTION TYPOGRAPHY FIX
========================= */

.why-card h3{
    font-size: 16px;   /* was too big */
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
    line-height: 1.3;
}

.why-card p{
    font-size: 13.5px;  /* softer + more professional */
    color: #666;
    line-height: 1.6;
}

/* ICON TEXT BALANCE */
.why-card{
    padding: 22px;
}

/* SECTION TITLE FIX (if also too big) */
.section-heading h2,
.catalog-header h2,
.about-hero h1{
    font-size: 28px;   /* reduced from large banner style */
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--primary-color);
}

/* SUBTITLE FIX */
.section-heading p,
.catalog-header p{
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE CONTROL */
@media (max-width: 768px){
    .section-heading h2,
    .catalog-header h2,
    .about-hero h1{
        font-size: 22px;
    }

    .why-card h3{
        font-size: 15px;
    }
}
/* =========================
   BURGER MENU
========================= */

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
}

.burger span {
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-speed);
}

/* animation */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================
   MOBILE MENU
========================= */

@media (max-width: 992px) {

    .burger {
        display: flex;
    }

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu li {
        padding: 12px 0;
    }
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.spare-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background: #253a4b;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon {
    font-size: 20px;
    font-weight: bold;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f8f8;
}

.accordion-item.active .accordion-header {
    background: #1e2e3a;
}

nav ul li {
    position: relative;
}

nav ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999;
}

nav ul li:hover .submenu {
    display: flex;
}

nav ul li .submenu li a {
    padding: 12px 15px;
    display: block;
    color: #111;
    font-size: 14px;
}

nav ul li .submenu li a:hover {
    background: #f2f2f2;
}


@media(max-width: 768px) {

    .main-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
    }

    .main-menu.active {
        display: flex;
    }

    .submenu {
        position: relative;
        box-shadow: none;
    }

}
/* =========================
FOOTER SOCIAL
========================= */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-size:18px;
}

.footer-social a:hover{
    background:#D4AF37;
    transform:translateY(-3px);
}
/* ==========================================
PREMIUM SOCIAL CONTACT CARDS
========================================== */

.footer-social-premium{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:25px;
}

.social-card{
    display:flex;
    align-items:center;
    gap:14px;

    padding:14px 18px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(212,175,55,0.15);

    border-radius:12px;

    text-decoration:none;

    color:#fff;

    transition:.35s ease;
}

.social-card:hover{
    transform:translateX(6px);

    border-color:#D4AF37;

    background:rgba(212,175,55,0.08);

    box-shadow:0 10px 25px rgba(212,175,55,0.15);
}

.social-card i{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:#D4AF37;

    color:#061B49;

    font-size:18px;
}

.social-card span{
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;
}
/* HERO */
.cabins-hero{
    height: 60vh;
    background: url('/assets/images/banners/cabin-hero.jpg') center/cover no-repeat;
    position: relative;
    display:flex;
    align-items:center;
    color:#fff;
}

.cabins-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.cabins-hero-content{
    position:relative;
    z-index:2;
}

/* GRID */
.cabins-showroom{
    padding:80px 0;
}

.cabins-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:30px;
}

/* CARD */
.cabin-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.cabin-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.cabin-image{
    position:relative;
    height:260px;
    overflow:hidden;
}

.cabin-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.cabin-card:hover img{
    transform:scale(1.1);
}

.cabin-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* CONTENT */
.cabin-content{
    padding:20px;
}

.cabin-content h3{
    margin-bottom:10px;
}

/* BUTTON */
.cabin-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:#0F172A;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s;
}

.cabin-btn:hover{
    background:#2563EB;
}

/* HERO */
.cabins-hero-lux{
    height: 70vh;
    position: relative;
    display:flex;
    align-items:center;
    color:#fff;
    overflow:hidden;
}

.cabins-hero-bg{
    position:absolute;
    inset:0;
    background:url('/assets/images/banners/cabin-hero.jpg') center/cover no-repeat;
    transform:scale(1.1);
}

.cabins-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(0,0,0,0.75), rgba(15,23,42,0.6));
}

.cabins-hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:6px 14px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:30px;
    font-size:12px;
    margin-bottom:15px;
    backdrop-filter: blur(10px);
}

/* FILTER */
.cabins-filter{
    padding:30px 0;
    text-align:center;
}

.filter-btn{
    border:1px solid #ddd;
    background:#fff;
    padding:10px 16px;
    margin:5px;
    border-radius:30px;
    cursor:pointer;
    transition:0.3s;
}

.filter-btn:hover{
    background:#0F172A;
    color:#fff;
}

.filter-btn.active{
    background:#2563EB;
    color:#fff;
    border-color:#2563EB;
}

/* GRID */
.cabins-grid-lux{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    padding:50px 0;
}

/* CARD */
.cabin-card-lux{
    background:rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border:1px solid rgba(0,0,0,0.08);
    border-radius:18px;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.cabin-card-lux:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

/* IMAGE */
.cabin-img{
    position:relative;
    height:260px;
    overflow:hidden;
}

.cabin-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.cabin-card-lux:hover img{
    transform:scale(1.12);
}

.img-glow{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.4));
}

/* INFO */
.cabin-info{
    padding:20px;
}

.cabin-info h3{
    margin-bottom:10px;
    font-size:18px;
}

/* BUTTON */
.lux-btn{
    display:inline-block;
    margin-top:12px;
    padding:10px 18px;
    border-radius:10px;
    background:linear-gradient(135deg,#2563EB,#0F172A);
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.lux-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(37,99,235,0.4);
}

/* HERO LAYOUT */
.cabin-detail-hero{
    display:grid;
    grid-template-columns: 1.4fr 1fr;
    min-height:90vh;
    background:#0F172A;
    color:#fff;
}

/* IMAGE */
.cabin-hero-left{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.main-image img{
    width:100%;
    border-radius:18px;
    object-fit:cover;
    box-shadow:0 30px 80px rgba(0,0,0,0.4);
}

/* STICKY PANEL */
.cabin-hero-right{
    padding:40px;
    background:linear-gradient(180deg,#0F172A,#111827);
}

.sticky-box{
    position:sticky;
    top:100px;
}

.badge{
    display:inline-block;
    padding:6px 12px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:30px;
    font-size:12px;
    margin-bottom:15px;
}

.desc{
    margin:15px 0;
    opacity:0.8;
    line-height:1.6;
}

/* CTA */
.cta-box{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.btn-wa{
    flex:1;
    padding:12px;
    background:#25D366;
    color:#fff;
    text-align:center;
    border-radius:10px;
    text-decoration:none;
}

.btn-main{
    flex:1;
    padding:12px;
    background:#2563EB;
    color:#fff;
    text-align:center;
    border-radius:10px;
    text-decoration:none;
}

/* DOWNLOAD */
.download{
    display:block;
    margin-top:15px;
    color:#fff;
    opacity:0.8;
}

/* SECTIONS */
.cabin-desc,
.cabin-specs,
.cabin-materials{
    padding:80px 0;
}

.spec-box{
    background:#fff;
    color:#111827;
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* MATERIALS */
.material-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:15px;
}

.material-card{
    padding:15px;
    border-radius:12px;
    background:#f3f4f6;
    text-align:center;
    transition:0.3s;
}

.material-card:hover{
    background:#2563EB;
    color:#fff;
}

.cabin-hero-elite{
    height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    color:#fff;
}

.hero-bg{
    position:absolute;
    inset:0;
    background:url('/assets/images/uploads/hero.jpg') center/cover no-repeat;
    transform:scale(1.2);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(0,0,0,0.8), rgba(15,23,42,0.6));
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-title{
    font-size:54px;
    font-weight:700;
}

.hero-sub{
    max-width:600px;
    opacity:0.85;
}
.detail-hero{
    padding:120px 0;
    background:#0f172a;
    color:#fff;
}

.detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.detail-image img{
    width:100%;
    border-radius:12px;
}

.spec-box{
    background:#f8fafc;
    padding:20px;
    border-radius:10px;
    white-space:pre-line;
}
/* ================= HERO ================= */

.cabins-hero-elite{
    height:90vh;
    display:flex;
    align-items:center;
    position:relative;
    background:#0b1220;
    overflow:hidden;
}

.hero-gradient{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center, rgba(0,123,255,0.25), transparent 60%);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
}

.hero-badge{
    display:inline-block;
    padding:8px 14px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:30px;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:20px;
}

/* ================= FILTER ================= */

.cabins-filter-elite{
    padding:30px 0;
    text-align:center;
}

.filter-btn{
    background:transparent;
    border:1px solid #ddd;
    padding:10px 18px;
    margin:5px;
    border-radius:30px;
    cursor:pointer;
    transition:0.3s;
}

.filter-btn.active{
    background:#0f172a;
    color:#fff;
}

/* ================= GRID ================= */

.cabins-grid-elite{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    padding:60px 0;
}

/* ================= CARD ================= */

.cabin-card-elite{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    transition:0.5s;
    transform-style:preserve-3d;
}

.cabin-card-elite:hover{
    transform:translateY(-10px) rotateX(2deg);
}

.cabin-image{
    position:relative;
    height:260px;
    overflow:hidden;
}

.cabin-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.cabin-card-elite:hover img{
    transform:scale(1.08);
}

.image-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.category-tag{
    display:inline-block;
    font-size:11px;
    letter-spacing:2px;
    color:#888;
    margin-bottom:10px;
}

.cabin-content{
    padding:20px;
}

.elite-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:#0f172a;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.elite-btn:hover{
    background:#2563eb;
}
/* ================= HERO ================= */

.cabins-hero-final{
    height:80vh;
    display:flex;
    align-items:center;
    background:#0b1220;
    color:white;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center, rgba(37,99,235,0.25), transparent 60%);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:6px 12px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:20px;
    font-size:12px;
    margin-bottom:15px;
}

/* ================= FILTER ================= */

.cabins-filter-final{
    padding:30px 0;
    text-align:center;
}

.filter-btn{
    padding:10px 18px;
    margin:5px;
    border-radius:25px;
    border:1px solid #ddd;
    background:white;
    cursor:pointer;
}

.filter-btn.active{
    background:#0f172a;
    color:white;
}

/* ================= GRID ================= */

.cabins-grid-final{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    padding:50px 0;
}

/* ================= CARD ================= */

.cabin-card-final{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:0.3s;
}

.cabin-card-final:hover{
    transform:translateY(-6px);
}

.cabin-image img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.cabin-content{
    padding:20px;
}

.tag{
    font-size:11px;
    letter-spacing:2px;
    color:#666;
}

.btn-final{
    display:inline-block;
    margin-top:12px;
    padding:10px 16px;
    background:#0f172a;
    color:white;
    border-radius:20px;
    text-decoration:none;
}
/* ================= HERO ================= */

.cabin-detail-hero{
    height:90vh;
    position:relative;
    display:flex;
    align-items:center;
    color:white;
    overflow:hidden;
}

.hero-bg img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.badge{
    display:inline-block;
    padding:6px 12px;
    border:1px solid rgba(255,255,255,0.3);
    border-radius:20px;
    font-size:12px;
    margin-bottom:15px;
}

/* ================= BUTTON ================= */

.btn-primary{
    display:inline-block;
    margin-top:20px;
    padding:12px 22px;
    background:#2563eb;
    color:white;
    border-radius:25px;
    text-decoration:none;
    transition:0.3s;
}

.btn-primary:hover{
    background:#1e40af;
}

/* ================= SECTION ================= */

.cabin-detail-section{
    padding:80px 0;
}

.cabin-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

/* ================= SPEC BOX ================= */

.spec-box{
    background:#0f172a;
    color:white;
    padding:20px;
    border-radius:12px;
    overflow:auto;
}

/* ================= SIDE CARD ================= */

.side-card{
    position:sticky;
    top:20px;
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 40px rgba(0,0,0,0.1);
}

.btn-dark{
    display:block;
    margin-top:15px;
    padding:10px;
    text-align:center;
    background:#0f172a;
    color:white;
    border-radius:10px;
    text-decoration:none;
}

/* ================= MOBILE ================= */

@media(max-width:900px){
    .cabin-grid{
        grid-template-columns:1fr;
    }
}
.cabins-hero{
    padding:120px 0;
    text-align:center;
    background:#0b1220;
    color:white;
}

.cabins-hero h1{
    font-size:48px;
    margin-bottom:10px;
}

.cabins-showroom{
    padding:80px 0;
    background:#f8fafc;
}

.cabins-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.cabin-card{
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.cabin-card:hover{
    transform:translateY(-8px);
}

.img-box{
    position:relative;
}

.img-box img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.cabin-info{
    padding:20px;
    text-align:center;
}

.btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 18px;
    background:#0f172a;
    color:white;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s;
}

.btn:hover{
    background:#1e293b;
}

/* REVEAL ANIMATION */
.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.delay{
    transition-delay:0.2s;
}
/* ======================================
DOORS PAGE
====================================== */

.doors-hero{
    padding:120px 0;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('/assets/images/doors/hero.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.doors-hero h1{
    font-size:58px;
    margin-bottom:15px;
}

.doors-hero p{
    max-width:700px;
    margin:auto;
    opacity:.9;
}

.doors-section{
    padding:90px 0;
}

.doors-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.door-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.door-card:hover{
    transform:translateY(-10px);
}

.door-image{
    height:340px;
    overflow:hidden;
}

.door-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.door-card:hover img{
    transform:scale(1.08);
}

.door-content{
    padding:25px;
}

.door-content h3{
    font-size:22px;
    margin-bottom:15px;
}

.door-features{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.door-features li{
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.doors-benefits{
    padding:100px 0;
    background:#f8fafc;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.benefit{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
}

.benefit h3{
    margin-bottom:15px;
}

.doors-cta{
    padding:100px 0;
    background:#061B49;
    text-align:center;
    color:#fff;
}

.doors-cta h2{
    margin-bottom:20px;
}

.doors-cta .btn{
    margin-top:20px;
}
/* ==================================================
DOORS PAGE
================================================== */

.doors-hero{
    background:linear-gradient(
        135deg,
        var(--primary-dark),
        #0f2b6d
    );
    color:#fff;
    text-align:center;
    padding:120px 20px;
}

.doors-label{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    font-size:.8rem;
    letter-spacing:2px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.doors-hero h1{
    font-size:3.5rem;
    margin-bottom:20px;
    font-weight:700;
}

.doors-hero p{
    max-width:700px;
    margin:auto;
    opacity:.9;
    font-size:1.1rem;
    line-height:1.8;
}

.doors-showcase{
    background:#fff;
    padding:100px 0;
}

.door-row{
    max-width:1400px;
    margin:0 auto 100px;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
    padding:0 40px;
}

.door-row:last-child{
    margin-bottom:0;
}

.door-row.reverse .door-image{
    order:2;
}

.door-row.reverse .door-content{
    order:1;
}

.door-image{
    overflow:hidden;
    border-radius:24px;
    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

.door-image img{
    width:100%;
    display:block;
    transition:.6s;
}

.door-image:hover img{
    transform:scale(1.05);
}

.door-content{
    padding:20px;
}

.door-category{
    color:var(--gold);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.8rem;
}

.door-content h2{
    font-size:2.6rem;
    margin:15px 0 25px;
    color:var(--primary-dark);
    line-height:1.2;
}

.door-content p{
    color:#6b7280;
    font-size:1.05rem;
    line-height:1.9;
    margin-bottom:35px;
}

.door-content .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.door-content .btn:hover{
    transform:translateY(-3px);
}

@media(max-width:992px){

    .door-row{
        grid-template-columns:1fr;
        gap:40px;
        margin-bottom:70px;
    }

    .door-row.reverse .door-image,
    .door-row.reverse .door-content{
        order:unset;
    }

    .door-content{
        text-align:center;
    }

    .doors-hero h1{
        font-size:2.5rem;
    }

    .door-content h2{
        font-size:2rem;
    }
}

@media(max-width:576px){

    .doors-hero{
        padding:90px 20px;
    }

    .doors-hero h1{
        font-size:2rem;
    }

    .door-row{
        padding:0 20px;
    }

    .door-content h2{
        font-size:1.7rem;
    }
}
/* ==================================================
DOORS PREMIUM
================================================== */

.doors-products{
    padding:100px 0;
}

.door-block{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:120px;
}

.door-block.reverse .door-photo{
    order:2;
}

.door-block.reverse .door-text{
    order:1;
}

.door-photo{
    overflow:hidden;
    border-radius:20px;
}

.door-photo img{
    width:100%;
    display:block;
    transition:.6s;
}

.door-photo:hover img{
    transform:scale(1.05);
}

.door-text span{
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.door-text h2{
    font-size:42px;
    color:var(--primary-dark);
    margin:15px 0 20px;
}

.door-text p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:25px;
}

.door-text ul{
    list-style:none;
    margin-bottom:35px;
}

.door-text ul li{
    margin-bottom:12px;
    position:relative;
    padding-left:25px;
}

.door-text ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--gold);
    font-weight:700;
}

@media(max-width:992px){

    .door-block{
        grid-template-columns:1fr;
        gap:40px;
        margin-bottom:80px;
    }

    .door-block.reverse .door-photo,
    .door-block.reverse .door-text{
        order:unset;
    }

    .door-text h2{
        font-size:32px;
    }
}
/* =========================
   DOORS PAGE
========================= */

.doors-hero-lux{
    height:70vh;
}

.doors-hero-lux h1{
    font-size:56px;
    margin-bottom:15px;
    color:#fff;
}

.doors-hero-lux p{
    max-width:700px;
    color:rgba(255,255,255,.9);
    font-size:18px;
}

.cabins-grid-lux{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    padding:80px 0;
}

.cabin-card-lux{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s ease;
}

.cabin-card-lux:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.cabin-img{
    height:320px;
    overflow:hidden;
    position:relative;
}

.cabin-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.cabin-card-lux:hover img{
    transform:scale(1.08);
}

.img-glow{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.35),
        transparent
    );
}

.cabin-info{
    padding:25px;
    text-align:center;
}

.cabin-info h3{
    font-size:22px;
    margin-bottom:20px;
    color:#0F172A;
}

.lux-btn{
    display:inline-block;
    padding:12px 24px;
    background:#0F172A;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.lux-btn:hover{
    background:#2563EB;
}

@media(max-width:768px){

    .doors-hero-lux h1{
        font-size:38px;
    }

    .cabins-grid-lux{
        grid-template-columns:1fr;
    }

}
.product-detail-page{
    padding:80px 0;
}

.product-detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.product-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.product-info h1{
    font-size:42px;
    margin-bottom:20px;
}

.product-description{
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}

.product-specifications{
    margin-top:70px;
}

.product-specifications h2{
    margin-bottom:25px;
}

.spec-box{
    background:#253a4f;
    padding:30px;
    border-radius:15px;
    line-height:1.9;
}

@media(max-width:991px){

    .product-detail-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .product-info h1{
        font-size:32px;
    }

}
.product-code{
    margin:10px 0 20px;
    display:inline-block;
    padding:6px 12px;
    background:#f4f6f8;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    color:#0F172A;
    letter-spacing:.5px;
}

.card-content{
    text-align:center;
}

.card-content h3{
    min-height:50px;
    margin-bottom:10px;
}

.catalog-card{
    transition:.35s ease;
}

.catalog-card:hover{
    transform:translateY(-8px);
}