/* =========================
   SYRIANI GROUP GLOBAL STYLE v2
   PREMIUM CORPORATE UPGRADE
========================= */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #1c1c1c;
    line-height: 1.7;
}

/* =========================
   NAVBAR (PREMIUM STYLE)
========================= */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

nav ul a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #c9a24a;
    transition: 0.3s;
}

nav ul a:hover {
    color: #c9a24a;
}

nav ul a:hover::after {
    width: 100%;
}

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 42px;
    background: #fff;
    min-width: 210px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 14px;
    color: #111;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f3f3f3;
}

/* =========================
   HERO (HOME PAGE PREMIUM)
========================= */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 8%;
    background: linear-gradient(135deg, #ffffff, #eef2f7);
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #111;
}

.hero-content p {
    font-size: 17px;
    color: #555;
    max-width: 850px;
    margin-bottom: 25px;
}

.hero-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    width: 240px;
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.contact-card .whatsapp-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 28px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s ease;
    border:none;
}

.contact-card .whatsapp-btn:hover{
    background:#c9a24a;
    color:#111;
}

/* =========================
   SECTION TITLES
========================= */

section {
    padding: 85px 8%;
}

.title {
    text-align: center;
    margin-bottom: 50px;
}

.title h2 {
    font-size: 34px;
    font-weight: 600;
    color: #111;
}

.title p {
    color: #666;
    margin-top: 8px;
}

/* =========================
   FEATURES (HOME)
========================= */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature {
    background: #fff;
    padding: 32px;
    border-radius: 14px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-8px);
    background: #111;
    color: #fff;
}

/* =========================
   PRODUCT GRID (CANON / CPS)
========================= */

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

/* PRODUCT CARD (PREMIUM) */
.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.card ul {
    padding-left: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* BADGE */
.badge {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 12px;
}

/* =========================
   SLIDER (SHOWCASE)
========================= */

.slider-section {
    padding: 70px 8%;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    gap: 22px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.slider-container::-webkit-scrollbar {
    height: 7px;
}

.slider-container::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.slide-card {
    min-width: 310px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.slide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slide-content {
    padding: 18px;
}

/* =========================
   TONERS SECTION
========================= */

.toners {
    width: 92%;
    max-width: 1200px;
    margin: 60px auto;
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.toners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.toner-box {
    background: #f6f7f9;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.toner-box:hover {
    background: #111;
    color: #fff;
}

/* =========================
   CONTACT SECTION
========================= */

.contact {
    background: #0f0f0f;
    color: #fff;
    text-align: center;
    padding: 75px 20px;
}

.contact p {
    color: #bbb;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #0a0a0a;
    color: #888;
    text-align: center;
    padding: 22px;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #151313;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.699);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .features {
        grid-template-columns: 1fr;
    }

}
/* =========================
   PAGE HEADERS CENTER FIX
========================= */

.page-header{
    text-align:center;
    padding:90px 20px 70px;
    background:linear-gradient(135deg,#111,#1c1c1c);
    color:white;
}

.page-header h1{
    font-size:48px;
    font-weight:600;
    margin-bottom:15px;
}

.page-header p{
    color:#cfcfcf;
    font-size:18px;
    max-width:900px;
    margin:auto;
    line-height:1.7;
}

/* SMALL TITLE */
.page-subtitle{
    text-align:center;
    margin-top:60px;
    margin-bottom:10px;
}

.page-subtitle h2{
    font-size:38px;
    margin-bottom:10px;
}

.page-subtitle p{
    color:#666;
    font-size:17px;
}

/* =========================
   CPS 4 CARDS FIX
========================= */

.cps-grid{
    width:92%;
    max-width:1500px;
    margin:60px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

@media(max-width:1200px){
    .cps-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .cps-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
   CONTACT PAGE 3 CARDS
========================= */

.contact-grid{
    width:92%;
    max-width:1400px;
    margin:70px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-card{
    background:white;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h3{
    margin-bottom:20px;
    font-size:24px;
}

.contact-card p{
    color:#555;
    line-height:1.9;
}

.contact-card .whatsapp-btn:hover{
    background:#080808;
    color:#fffefe;
}

@media(max-width:950px){
    .contact-grid{
        grid-template-columns:1fr;
    }
}