/* ================= GLOBAL ================= */
/* MOBILE OVERFLOW FIX */

html, body{
width:100%;
overflow-x:hidden;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

.container{
width:90%;
margin:auto;
}

a{
text-decoration:none;
color:inherit;
}

/* ================= TOP BAR ================= */

.topbar{
background:#161616;
color:white;
font-size:14px;
padding:8px 0;
}

.topbar-flex{
display:flex;
justify-content:space-between;
align-items:center;
}

/* ================= GLOBAL ================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

.container{
width:90%;
margin:auto;
}

/* ================= NAVBAR ================= */

.navbar{
background:#2a1408;
border-bottom:1px solid #ddd;
position:sticky;
top:0;
z-index:1000;
}

/* LOGO */

.logo img{
height:60px;
width:auto;
object-fit:contain;
}

/* NAVBAR HEIGHT */

.nav-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;
}

/* ================= MENU ================= */

.nav-menu{
list-style:none;
display:flex;
gap:35px;
position:absolute;
left:50%;
transform:translateX(-50%);
}

.nav-menu li{
position:relative;
}

.nav-menu a{
text-decoration:none;
color:#ccc;
font-weight:700;
font-size:16px;
letter-spacing:0.3px;
transition:0.3s;
}

.nav-menu a:hover{
color:#e31e24;
}

/* ACTIVE */

.nav-menu li.active a{
color:#e31e24;
border-bottom:2px solid #e31e24;
}

/* ================= DROPDOWN (DESKTOP FIRST) ================= */

.dropdown{
position:relative;
}

/* arrow */

.dropdown-toggle i{
margin-left:6px;
font-size:12px;
transition:0.3s;
}

/* dropdown menu (DESKTOP) */

.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:#fff;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
padding:8px 0;
min-width:210px;

opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:0.3s ease;

z-index:999;
}

/* items */

.dropdown-menu li{
list-style:none;
}

.dropdown-menu a{
display:block;
padding:12px 20px;
color:#333;
font-size:15px;
text-decoration:none;
transition:0.2s;
}

.dropdown-menu a:hover{
background:#24140b;
color:#e31e24;
}

/* DESKTOP HOVER */

@media (min-width:769px){

.dropdown:hover .dropdown-menu{
opacity:1;
visibility:visible;
transform:translateY(0);
}

.dropdown:hover .dropdown-toggle i{
transform:rotate(180deg);
}

}

/* ================= MOBILE MENU ================= */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:100%;
height:100vh;
background:#e31e24;
display:flex;
justify-content:center;
align-items:center;
transition:0.4s ease;
z-index:2000;
overflow-y:auto;
}

.mobile-menu.active{
right:0;
}

.mobile-menu ul{
list-style:none;
text-align:center;
padding:0;
width:100%;
}

.mobile-menu li{
margin:20px 0;
}

.mobile-menu a{
color:#fff;
font-size:24px;
text-decoration:none;
font-weight:500;
}

/* ================= MOBILE DROPDOWN ================= */

@media (max-width:768px){

/* disable desktop dropdown behavior */
.nav-menu{
display:none;
}

.hamburger{
display:flex;
}

/* mobile dropdown style */

.mobile-menu .dropdown-menu{
position:static;
background:#ffffff;
border-radius:12px;
box-shadow:none;

max-height:0;
overflow:hidden;

opacity:1;
visibility:visible;
transform:none;

transition:max-height 0.3s ease;
}

/* open */

.mobile-menu .dropdown.active .dropdown-menu{
max-height:500px;
}

/* items */

.mobile-menu .dropdown-menu a{
padding:14px 20px;
border-bottom:1px solid #eee;
color:#333;
}

/* header row */

.dropdown-header{
display:flex;
justify-content:center;
align-items:center;
gap:8px;
}

.dropdown-toggle{
cursor:pointer;
color:white;
}

}

/* ================= RIGHT SIDE ================= */

.nav-right{
display:flex;
align-items:center;
gap:15px;
}

.quote-btn{
background:#e31e24;
color:white;
border:none;
padding:10px 22px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.quote-btn:hover{
background:#c51b20;
}

/* ================= FIX HAMBURGER ================= */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
z-index:3000; /* 🔥 important (bring above everything) */
}

.hamburger span{
width:25px;
height:3px;
background:#e31e24; /* 🔥 change to white for visibility */
display:block;
}

/* SHOW ONLY IN MOBILE */

@media(max-width:768px){

.hamburger{
display:flex !important;
position:absolute;
right:20px;
top:20px;
}

}

/* ================= CLOSE BUTTON ================= */

.close-btn{
position:absolute;
top:20px;
right:30px;
font-size:32px;
color:white;
cursor:pointer;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.quote-btn{
display:none;
}

.logo img{
height:40px;
}

}

@media(max-width:600px){

.logo img{
height:35px;
}

.mobile-menu a{
font-size:22px;
}

}

/* ================= BRAND HERO ================= */

.brand-hero{
width:100%;
padding:80px 20px;
background:#361d0e;
}

/* container */

.brand-hero-box{

max-width:1200px;
margin:auto;

background:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("../images/about.jpeg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

border-radius:20px;

padding:90px 70px;

color:white;
}

/* badge */

.brand-badge{
display:inline-block;
background:#e31e24;
padding:6px 14px;
border-radius:20px;
font-size:12px;
letter-spacing:1px;
margin-bottom:15px;
}

/* heading */

.brand-hero-box h1{
font-size:48px;
font-weight:700;
margin-bottom:15px;
}

/* paragraph */

.brand-hero-box p{
font-size:18px;
max-width:600px;
line-height:1.6;
color:#eaeaea;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.brand-hero-box{
padding:60px 30px;
}

.brand-hero-box h1{
font-size:34px;
}

.brand-hero-box p{
font-size:16px;
}

}

@media(max-width:480px){

.brand-hero-box{
padding:50px 20px;
}

.brand-hero-box h1{
font-size:28px;
}

}

/* ================= ABOUT INTRO ================= */

.about-intro{
padding:80px 20px;
background:linear-gradient(135deg,#2b1609,#4a2412); /* premium brown theme */
font-family:Arial, Helvetica, sans-serif;
}

/* GRID LAYOUT */

.about-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* IMAGES */

.about-images img{
width:100%;
border-radius:12px;
box-shadow:0 12px 30px rgba(0,0,0,0.25);
transition:0.4s ease;
}

.about-images img:hover{
transform:scale(1.03);
}

/* SECOND IMAGE */

.img2{
margin-top:20px;
}

/* CONTENT */

.about-content h2{
font-size:36px;
margin-bottom:20px;
color:white;
font-weight:700;
}

/* PARAGRAPH */

.about-content p{
margin-bottom:16px;
line-height:1.8;
color:#e5e5e5;
font-size:16px;
}

/* HIGHLIGHT BRAND NAME */

.about-content strong{
color:#e31e24;
}

/* BUTTON (OPTIONAL IF YOU ADD CONTACT BUTTON) */

.about-btn{
display:inline-block;
margin-top:20px;
background:#e31e24;
color:white;
padding:12px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.about-btn:hover{
background:#c71a1f;
}

/* ================= RESPONSIVE ================= */

/* TABLET */

@media(max-width:992px){

.about-grid{
grid-template-columns:1fr;
gap:40px;
}

.about-content h2{
font-size:30px;
}

}

/* MOBILE */

@media(max-width:600px){

.about-intro{
padding:60px 20px;
}

.about-content h2{
font-size:26px;
}

.about-content p{
font-size:15px;
}

.about-images img{
border-radius:10px;
}

}

/* ================= BUTTON ================= */

.btn-primary{
background:#e31e24;
color:white;
padding:12px 28px;
text-decoration:none;
border-radius:6px;
display:inline-block;
margin-top:15px;
font-weight:600;
transition:0.3s;
}

.btn-primary:hover{
background:#c61a1f;
}

/* ================= PREMIUM OFFER SECTION ================= */

.offer-premium{
padding:90px 20px;
background:#3b1a07;
}

.offer-container{
max-width:1200px;
margin:auto;
}

/* heading */

.offer-heading{
text-align:center;
margin-bottom:60px;
}

.offer-heading h2{
font-size:38px;
color:#e31e24;
margin-bottom:10px;
}

.offer-heading p{
color:#fff;
font-size:16px;
}

/* grid */

.offer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

/* card */

/* ================= OFFER CARD ================= */

.offer-card{
position:relative;
overflow:hidden;
border-radius:18px;
cursor:pointer;
}

/* image */

.offer-card img{
width:100%;
height:320px;
object-fit:cover;
transition:0.4s;
}

/* overlay */

.offer-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(227,30,36,0.85);

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;

padding:25px;
color:white;

opacity:0;
transition:0.4s;
}

/* icon */

.offer-overlay i{
font-size:26px;
background:white;
color:#e31e24;
padding:14px;
border-radius:10px;
margin-bottom:15px;
}

/* heading */

.offer-overlay h3{
font-size:20px;
margin-bottom:10px;
}

/* paragraph */

.offer-overlay p{
font-size:14px;
max-width:230px;
color:#f3f3f3;
}

/* ================= HOVER EFFECT (DESKTOP) ================= */

.offer-card:hover .offer-overlay{
opacity:1;
}

.offer-card:hover img{
transform:scale(1.05);
}

/* ================= MOBILE TAP EFFECT ================= */

.offer-card:active .offer-overlay{
opacity:1;
}

.offer-card:active img{
transform:scale(1.05);
}

/* ================= MOBILE CARD FIX ================= */

@media (max-width:768px){

.offer-grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
}

.offer-card{
width:100%;
height:auto;
}

.offer-card img{
width:100%;
height:260px;
object-fit:cover;
border-radius:18px;
}

.offer-overlay{
opacity:0;
}

}


/* ================= MISSION VISION SECTION ================= */

.mission-section{
padding:80px 20px;
background:#1c0f07;
}

.mission-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}

/* card */

.mission-card{
background:#381f11;
padding:40px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.3s;
border:1px solid #eee;
}

.mission-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* icon */

.mission-icon{
width:55px;
height:55px;
background:#ffeaea;
color:#e31e24;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-size:22px;
margin-bottom:20px;
}

/* title */

.mission-card h3{
font-size:24px;
color:#e31e24;
margin-bottom:10px;
}

/* text */

.mission-card p{
color:#fff;
line-height:1.7;
font-size:15px;
}

/* responsive */

@media(max-width:768px){

.mission-container{
grid-template-columns:1fr;
}

.mission-card{
padding:30px;
}

}

/* ================= JOURNEY SECTION ================= */

.journey-section{
background:#161616;
padding:80px 20px;
color:#fff;
}

.journey-container{
max-width:1000px;
margin:auto;
}

.journey-title{
font-size:36px;
color:#e31e24;
margin-bottom:40px;
position:relative;
}

.journey-title:after{
content:"";
width:60px;
height:3px;
background:#e31e24;
display:block;
margin-top:10px;
}

/* timeline */

.timeline{
position:relative;
padding-left:40px;
border-left:2px solid #e31e24;
}

.timeline-item{
display:flex;
margin-bottom:40px;
position:relative;
}

/* icon */

.timeline-icon{
width:45px;
height:45px;
background:#e31e24;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:18px;
position:absolute;
left:-23px;
}

/* content */

.timeline-content{
margin-left:40px;
}

.timeline-content h3{
font-size:20px;
margin-bottom:8px;
}

.timeline-content p{
color:#ccc;
line-height:1.6;
font-size:15px;
}

/* responsive */

@media(max-width:768px){

.timeline{
padding-left:30px;
}

.timeline-icon{
width:38px;
height:38px;
font-size:16px;
left:-19px;
}

.timeline-content{
margin-left:35px;
}

.journey-title{
font-size:28px;
}

}

/* ================= COMPANY INFORMATION ================= */

.company-info-section{
padding:90px 20px;
background:#1c0f07;
}

.company-container{
max-width:1200px;
margin:auto;
}

.company-header{
text-align:center;
margin-bottom:50px;
}

.company-header h2{
font-size:36px;
color:#e31e24;
margin-bottom:10px;
}

.company-header p{
color:#fff;
font-size:15px;
}

/* grid */

.company-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

/* card */

.company-card{
background:#331d10;
padding:35px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
border-top:4px solid #e31e24;
}

/* item */

.company-item{
display:flex;
align-items:flex-start;
gap:15px;
margin-bottom:22px;
}

.company-item i{
color:#e31e24;
font-size:20px;
background:#ffe9ea;
padding:10px;
border-radius:10px;
min-width:40px;
text-align:center;
}

.company-item strong{
display:block;
font-size:15px;
margin-bottom:3px;
color:#e31e24;   /* 🔥 ADD THIS LINE */
}

.company-item p{
margin:0;
font-size:14px;
color:white;
}

/* button */

.company-btn{
text-align:center;
margin-top:35px;
}

.company-contact-btn{
background:#e31e24;
color:white;
padding:12px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.company-contact-btn:hover{
background:#b31519;
}

/* responsive */

@media(max-width:768px){

.company-grid{
grid-template-columns:1fr;
}

.company-header h2{
font-size:28px;
}

}

/* ================= FOOTER ================= */

.footer{
background:#161616;
color:#ccc;
padding:60px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

/* LOGO */

.footer-logo{
width:180px;
margin-bottom:15px;
}

/* TEXT */

.footer p{
line-height:1.6;
font-size:14px;
}

/* HEADINGS */

.footer h3{
color:white;
margin-bottom:15px;
}

.footer h4{
margin-top:20px;
color:white;
}

/* LINKS */

.footer-links ul,
.footer-products ul{
list-style:none;
}

.footer-links li,
.footer-products li{
margin-bottom:8px;
}

.footer-links a{
text-decoration:none;
color:#ccc;
transition:0.3s;
}

.footer-links a:hover{
color:#ff3c3c;
}

/* CONTACT ICONS */

.footer-contact i{
color:#ff3c3c;
margin-right:8px;
}

/* SOCIAL */

.social-icons{
margin-top:10px;
}

.social-icons a{
display:inline-block;
width:36px;
height:36px;
background:#222;
border-radius:50%;
text-align:center;
line-height:36px;
margin-right:8px;
color:white;
transition:0.3s;
}

.social-icons a:hover{
background:#ff3c3c;
}

/* COPYRIGHT */

.footer-bottom{
text-align:center;
border-top:1px solid #222;
margin-top:40px;
padding-top:20px;
font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-contact p{
justify-content:center;
}

}