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

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:#fff;
    line-height:1.6;
    overflow-x:hidden;
}

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

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:#000;
    border-bottom:1px solid #222;
}

.navbar{
    max-width:1200px;
    margin:auto;
    padding:15px 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:85px;
    display:block;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
    font-size: 18px;
}

.nav-links a:hover{
    color:#C9A356;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#C9A356;
    font-size:30px;
    cursor:pointer;
}

/* =========================
   BUTTONS
========================= */

.btn{
    background:white;
    color:black;
    text-decoration:none;
    padding:12px 25px;
    border-radius:5px;
    font-weight:bold;
    transition:all .3s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-outline{
    border:1px solid white;
    padding:12px 25px;
    text-decoration:none;
    color:white;
    border-radius:5px;
    transition:all .3s ease;
}

.btn-outline:hover{
    background:white;
    color:black;
}

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

.hero{
    min-height:100vh;

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

    text-align:center;

    padding:120px 20px 60px;

    background-image:url('/img/nyomot1.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    max-width:1000px;
}

.hero h1{
    font-size:70px;
    margin-bottom:20px;
    background:linear-gradient(
        390deg,
        #553b06,
        #C9A356,
        #e2d598,
        #C9A356,
        #553b06
    );

    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
}

.hero h2{
    font-size: 55px;
}

.hero p{
    font-size:20px;
    color:#ccc;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
    justify-content:center;
}

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

.about-container{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:60px;

    align-items:center;

    margin-top:50px;
}

.about-text{

    text-align:left;
}

.about-text p{

    margin-bottom:20px;

    color:#fff;

    line-height:1.9;

    font-size:20px;
}

.about-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    object-position:center bottom;

    border-radius:15px;

    margin:auto;

    display:block;

    border-radius:15px;

    border:1px solid #222;
}

/* WHY CHOOSE US */

.why-us{

    margin-top:80px;
}

.why-us h3{

    font-size:36px;

    text-align:center;

    margin-bottom:40px;
}

.why-slider-wrapper{

    width:1020px;

    max-width:100%;

    margin:auto;

    overflow:hidden;

    padding-top:10px;

    cursor:grab;

    user-select:none;
}

.why-slider-wrapper:active{

    cursor:grabbing;
}

.why-slider{

    display:flex;

    gap:30px;

    touch-action:pan-y;

    transition:transform .8s ease;
}

.why-card{

    width:320px;

    min-height:220px;

    background:#111;

    border:1px solid #222;

    border-radius:15px;

    padding:25px;

    flex-shrink:0;

    transition:.3s;

    display: flex;

    flex-direction: column;
}

.why-card:hover{

    transform:translateY(-5px);

    border-color:#C9A356;
}

.why-card-title{

    display:flex;

    justify-content: center;

    align-items:center;

    gap:15px;

    min-height: 60px;
}

/* .why-card-title i{

    font-size:24px;

    color:#C9A356;
} */

.why-card-title img{

    width:30px;
    height:30px;
}

.why-card-title h4{

    font-size:22px;

    text-align: center;

    margin:0;

    color:#fff;
}

.why-card p{

    color:#ccc;

    margin-top: 15px;

    line-height:1.8;

    font-size:16px;
}

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

.section{
    padding:120px 20px;
    max-width:1200px;
    margin:auto;
    text-align:center;

    scroll-margin-top:100px;
}

.section h2{
    font-size:42px;
    margin-bottom:30px;
    color:#C9A356;
}

/* =========================
   PRODUCT TABS
========================= */

.product-tabs{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:40px;

    margin-bottom:40px;
}

.product-tab{

    background:#111;

    color:white;

    border:1px solid #222;

    padding:12px 25px;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

    font-size: 18px;

    font-weight: bold;
}

.product-tab:hover{

    border-color:#C9A356;
}

.product-tab.active{

    background:white;

    color:black;
}

/* =========================
   PRODUCT DETAIL
========================= */

.product-detail{

    display:none;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.active-product{

    display:grid;
}

.product-image img{

    width:100%;

    border-radius:12px;

    display:block;
}

.product-content{

    text-align:left;
}

.product-content h3{

    font-size:32px;

    margin-bottom:20px;

    white-space: nowrap;
}

.product-content p{

    max-width:100%;

    font-size: 18px;

    margin-bottom:20px;
}

.product-content ul{

    padding-left:20px;
}

.product-content li{

    margin-bottom:10px;

    font-size: 17px;
}

/* =========================
   PORTFOLIO
========================= */

.portfolio-item{
    height:250px;
    background:#111;
    border:1px solid #222;

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

    font-size:22px;
    border-radius:12px;
}

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

.news-wrapper{
    position: relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.news-slider{
    display:flex;
    gap:25px;

    overflow-x:hidden;

    scroll-behavior:smooth;

    padding:20px 10px;

    width:1020px;

    scrollbar-width:none;
}

.news-slider::-webkit-scrollbar{
    display:none;
}

.news-card{
    min-width:320px;

    background:#111;

    border:1px solid #222;

    border-radius:12px;

    overflow:hidden;

    display: flex;

    flex-direction: column;

    text-decoration:none;

    color:white;

    transition:.3s;
}

.news-card:hover{
    transform:translateY(-5px);
    border-color:#C9A356;
}

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.news-card h3{
    padding:15px;
    padding-bottom:10px;
}

.news-card p{
    margin-top: auto;
    padding:0 15px 20px;
    color:#bbb;
}

.news-btn{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:50px;
    height:50px;

    border:none;

    background:#111;

    color:white;

    font-size:24px;

    cursor:pointer;

    border-radius:50%;

    flex-shrink:0;

    transition:.3s;
}

.prev-btn{
    left:-70px;
}

.next-btn{
    right:-70px;
}

.news-btn:hover{
    background:#222;
}

/* ===================================
   NEWS ARTICLE
=================================== */

.article-page {
    background: #000;
    padding: 140px 20px 80px;
}

.article-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* HEADER */

.article-header {
    margin-bottom: 50px;
}

.article-title {
    font-size: 3rem;
    line-height: 1.25;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

/* COVER IMAGE */

.article-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* CONTENT */

.article-content {
    margin-top: 50px;
}

.article-content h2 {
    font-size: 2rem;
    color: #222;
    margin-top: 50px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.article-content h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #C9A356;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.article-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* LIST */

.article-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #555;
}

.article-content li::marker {
    color: #C9A356;
}

/* TABLE */

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    overflow: hidden;
    border-radius: 12px;
}

.article-table thead {
    background: #1d2939;
    color: white;
}

.article-table th {
    padding: 16px;
    text-align: left;
}

.article-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #000;
}

.article-table tbody tr:hover {
    background: #f7f7f7;
}

/* COMPANY VIDEO */

.company-video{

    margin-top:80px;
}

.company-video iframe{

    width:100%;

    max-width:900px;

    height:500px;

    border:none;

    border-radius:15px;

    display:block;

    margin:auto;
}

.company-video h3{
    font-size:36px;

    text-align:center;

    margin-bottom:40px;
}

/* =========================
   STATISTICS
========================= */

.stats{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;

    padding:80px 20px;

    background:#111;
}

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

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

.stat-box p{
    color:#bbb;
}

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

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:50px;

    align-items:start;
}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

    text-align:left;
}

.contact-item{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:18px;

    padding:10px;
}

.contact-item i{

    font-size:24px;

    width:30px;

    color:white;
}

.contact-item a{
    color:#fff;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:100%;
}

.contact-form input{
    background:#111;
    color:white;


    border:1px solid #333;

    padding:15px;

    border-radius:8px;

    font-size: 15px;
}


.contact-form textarea{
    background:#111;
    color:white;

    font-size: 15px;

    border:1px solid #333;

    padding:15px;

    border-radius:8px;
}

.contact-form textarea{
    height:180px;
    resize:none;
}

.contact-form button{
    font-size: 15px;
}

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

footer{

    border-top:1px solid #222;

    padding:30px 20px;

    background:#000;
}

.footer-container{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;
}

.footer-text{

    color:#888;
}

.footer-social{

    display:flex;

    gap:15px;
}

.social-link{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:1px solid #222;

    border-radius:50%;

    color:white;

    text-decoration:none;

    transition:.3s;
}

.social-link:hover{

    border-color:white;

    transform:translateY(-3px);
}

.social-link i{

    font-size:20px;
}

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

.whatsapp-float{
    position:fixed;

    bottom:30px;
    right:30px;

    width:60px;
    height:60px;

    background:#25D366;
    color:white;

    border-radius:50%;

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

    text-decoration:none;

    font-size:24px;
    font-weight:bold;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

    transition:.3s;

    z-index:9999;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.whatsapp-float i{
    font-size:32px;
}

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

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;

        position:absolute;
        top:80px;
        left:0;

        width:100%;

        background:#000;

        flex-direction:column;
        text-align:center;

        padding:20px 0;

        border-top:1px solid #222;
    }

    .nav-links.active{
        display:flex;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .news-btn{
        width:40px;
        height:40px;
        font-size:18px;
    }

    .contact-container{
    grid-template-columns:1fr;
    }

    .whatsapp-float{
        width:55px;
        height:55px;

        bottom:20px;
        right:20px;
    }

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

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

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

    .why-us li{
    justify-content:center;

    font-size:20px;
    }
}