/* ===============================
   BAG STORE ROOT THEME
================================ */

:root{

/* BRAND COLORS */
--primary:#00234d;
--primary-light:#0b3a75;

--accent:#ff7a00;
--accent-hover:#ff7800;

/* NEUTRALS */
--white:#ffffff;
--light-bg:#f8fafc;
--border:#e5e7eb;

/* TEXT COLORS */
--text-dark:#0f172a;
--text-light:#475569;
--muted:#6b7280;

/* UI ELEMENTS */
--shadow:0 10px 30px rgba(0,0,0,0.08);
--radius:8px;

/* FONT */
--font-main:"Poppins", sans-serif;

}
/* ================= HEADER ================= */

.bag-header{
background:var(--white);
border-bottom:1px solid var(--border);
font-family:var(--font-main);
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,0.04);
}

/* ================= TOP BAR ================= */

.bag-topbar{
background:#00234d;
color:var(--white);
font-size:15px;
padding:8px 0;
}

.bag-topbar .container-xl{
position:relative;
}

.topbar-left span{
margin-right:15px;
}

.sale-text{
position:absolute;
left:50%;
transform:translateX(-50%);
font-weight:500;
color:var(--accent);
}

.topbar-right a{
color:var(--white);
text-decoration:none;
}

.topbar-right a:hover{
color:var(--accent);
}

/* ================= LOGO ================= */

.bag-logo img{
height:55px;
width:auto;
transition:.3s;
}

.bag-logo img:hover{
transform:scale(1.05);
}

/* ================= NAVIGATION ================= */

.bag-nav{
display:flex;
align-items:center;
gap:30px;
margin:0;
padding:0;
}

.bag-nav li{
list-style:none;
position:relative;
}

.bag-nav a,
.bag-nav button{
text-decoration:none;
color:var(--text-dark);
font-weight:500;
font-size:15px;
border:none;
background:none;
cursor:pointer;
padding:6px 0;
display:flex;
align-items:center;
gap:6px;
position:relative;
transition:0.3s;
}

/* NAV HOVER */

.bag-nav a:hover,
.bag-nav button:hover{
color:var(--accent);
}

/* UNDERLINE EFFECT */

.bag-nav li a::after,
.bag-nav li button::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:var(--accent);
transition:.3s;
}

.bag-nav li:hover a::after,
.bag-nav li:hover button::after{
width:100%;
}

/* ================= DROPDOWN ================= */

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:var(--white);
border:1px solid var(--border);
border-radius:var(--radius);
min-width:220px;
padding:8px 0;
box-shadow:var(--shadow);
z-index:9999;
display:none;
}

/* SHOW DROPDOWN */

.dropdown:hover > .dropdown-menu{
display:block;
}

/* DROPDOWN ITEMS */

.dropdown-menu li{
list-style:none;
}

.dropdown-menu a{
display:block;
padding:10px 18px;
font-size:14px;
color:var(--text-dark);
text-decoration:none;
transition:0.3s;
}

.dropdown-menu a:hover{
background:var(--light-bg);
color:var(--accent);
}

/* ================= SEARCH ================= */

.bag-search{
position:relative;
width:240px;
}

.bag-search input{
width:100%;
height:40px;
padding:0 38px 0 14px;
border-radius:25px;
border:1px solid var(--border);
background:var(--light-bg);
font-size:14px;
outline:none;
transition:.3s;
}

.bag-search input:focus{
border-color:var(--accent);
background:var(--white);
box-shadow:0 0 0 2px rgba(247,107,106,0.15);
}

.bag-search i{
position:absolute;
right:12px;
top:50%;
transform:translateY(-50%);
color:var(--muted);
}

/* ================= SEARCH SUGGESTIONS ================= */

.search-wrapper{
position:relative;
}

.suggestions-box{
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
border:1px solid #ddd;
border-top:none;
max-height:300px;
overflow-y:auto;
display:none;
z-index:999;
}

.suggest-item{
display:block;
padding:10px 12px;
text-decoration:none;
color:#333;
border-bottom:1px solid #eee;
}

.suggest-item:hover{
background:#f5f5f5;
}

/* ================= HEADER ICONS ================= */

.bag-icons{
display:flex;
align-items:center;
gap:26px;
}

.header-icon{
position:relative;
font-size:22px;
color:var(--text-dark);
transition:0.3s;
font-weight:600;
}

.header-icon i{
font-size:22px;
}

.header-icon:hover{
color:var(--accent);
transform:translateY(-2px);
}

/* ================= BADGES ================= */

.cart-badge,
.wishlist-badge{
position:absolute;
top:-6px;
right:-8px;
background:var(--accent);
color:var(--white);
font-size:10px;
font-weight:600;
min-width:18px;
height:18px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}

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

#mobileToggle{
cursor:pointer;
}

.mobile-nav{
display:none;
background:var(--white);
border-top:1px solid var(--border);
animation:slideMenu .3s ease;
}

@keyframes slideMenu{
from{
opacity:0;
transform:translateY(-10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.mobile-nav.active{
display:block;
}

.mobile-nav .bag-nav{
flex-direction:column;
align-items:flex-start;
gap:18px;
padding:20px;
}

.mobile-nav .bag-nav a,
.mobile-nav button{
font-size:16px;
font-weight:500;
}

/* MOBILE DROPDOWN */

.mobile-nav .dropdown-menu{
display:none;
margin-top:10px;
padding-left:15px;
border-left:3px solid var(--accent);
background:var(--light-bg);
border-radius:4px;
}

.mobile-nav .dropdown.active .dropdown-menu{
display:block;
}

.mobile-nav .dropdown-menu a{
padding:8px 0;
font-size:15px;
}

/* TOP BAR MOBILE FIX */

@media(max-width:768px){

.bag-topbar .container-xl{
display:flex;
flex-direction:row;
gap:4px;
text-align:center;
}

.sale-text{
position:static;
transform:none;
display:none;
}

.topbar-left,
.topbar-right{
font-size:13px;
}

}

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

@media (max-width:992px){

.bag-search{
display:none;
}

.bag-logo img{
height:45px;
}

}

@media (max-width:768px){

.bag-icons{
gap:16px;
}

.bag-logo img{
height:40px;
}

}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 0px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-banner{
position:relative;
width:100%;
height:620px;
overflow:hidden;
font-family:var(--font-main);
}

/* IMAGE */

.hero-img{
width:100%;
height:100%;
object-fit:cover;
}

/* DARK OVERLAY FOR TEXT VISIBILITY */

.hero-banner::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
z-index:1;
}

/* TEXT BOX */

.hero-textbox{
position:absolute;
top:50%;
left:8%;
transform:translateY(-50%);
max-width:520px;
z-index:2;
}

/* SMALL TAG */

.hero-small{
color:#ffd700;
font-weight:600;
letter-spacing:2px;
font-size:14px;
margin-bottom:12px;
display:inline-block;
text-transform:uppercase;
}

/* TITLE */

.hero-title{
font-size:56px;
font-weight:800;
color:#ffffff;
line-height:1.2;
margin-bottom:18px;
text-shadow:0 4px 15px rgba(0,0,0,0.4);
}

/* DESCRIPTION */

.hero-desc{
color:#f5f5f5;
font-size:17px;
margin-bottom:28px;
line-height:1.7;
}

/* BUTTON */

.hero-btn{
background:#ff7a00;
color:white;
padding:14px 34px;
border-radius:40px;
text-decoration:none;
font-weight:600;
letter-spacing:0.5px;
transition:0.3s;
box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

.hero-btn:hover{
background:#00234d;
transform:translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:768px){

.hero-banner{
height:480px;
}

/* overlay thoda dark mobile ke liye */

.hero-banner::after{
background:linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
}

/* TEXT CENTER */

.hero-textbox{
left:20px;
right:20px;
top:50%;
transform:translateY(-50%);
text-align:center;
max-width:100%;
}

/* SMALL TAG */

.hero-small{
font-size:12px;
letter-spacing:1.5px;
}

/* TITLE */

.hero-title{
font-size:30px;
line-height:1.3;
margin-bottom:15px;
}

/* DESCRIPTION */

.hero-desc{
font-size:15px;
line-height:1.6;
margin-bottom:22px;
}

/* BUTTON */

.hero-btn{
padding:12px 28px;
font-size:14px;
}

}
/*--------------------------------------------------------------
# Certificate Section
--------------------------------------------------------------*/
.certification-section {
  background: #ffffff;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.certification-track {
  display: flex;
  gap: 60px;
  animation: scrollCert 10s linear infinite;
  align-items: center;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 16px;
  white-space: nowrap;
}

.cert-item img {
  height: 42px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.3s ease;
}

.cert-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollCert {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media(max-width: 768px) {
  .certification-track {
    animation-duration: 2s; /* Mobile speed = 10 seconds */
  }

  .cert-item {
    min-width: 180px;
    font-size: 14px;
  }

  .cert-item img {
    height: 34px;
  }
}

.about-banner {
  width: 100%;
  height: 300px;
  background: url('../../assets/images/why.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 220px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Category Section
--------------------------------------------------------------*/
/* -------------------- */


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-handloom {
  background: linear-gradient(135deg, #FAF7F2, #ffffff);
}

/* IMAGE AREA */
.about-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-main-img {
  transform: scale(1.08);
}

/* FLOATING FABRIC BADGE */
.fabric-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(198,90,58,0.95);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* TEXT SIDE */
.about-label {
  display: inline-block;
  color: #C65A3A;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.about-title {
  font-size: 46px;
  font-weight: 900;
  color: #2E2E2E;
  line-height: 1.15;
}

.about-title span {
  color: #C65A3A;
}

/* DESCRIPTION */
.about-description {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  line-height: 1.85;
  margin-top: 16px;
  max-width: 560px;
}

/* HIGHLIGHT LIST */
.about-highlights {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.about-highlights li {
  font-size: 15px;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.about-highlights li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #CFAE70;
  font-size: 16px;
}

/* BUTTON */
.about-btn-premium {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C65A3A, #B24A2E);
  color: white;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(198,90,58,0.35);
  transition: 0.3s ease;
}

.about-btn-premium:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #B24A2E, #C65A3A);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .about-title {
    font-size: 34px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-image-wrap {
    border-radius: 16px;
  }

  .fabric-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/*--------------------------------------------------------------
# Prefooter Section
--------------------------------------------------------------*/
.pre-footer {
  background: var(--soft-bg);
  padding: 30px 20px;
  font-family: var(--font-main);
}

.pre-footer .container {
  max-width: 2200px;
  margin: 0 auto;
}

.pre-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pre-footer-text {
  flex: 1 1 50%;
  padding-right: 20px;
}

.pre-footer-text h2 {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.pre-footer-text p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: #ff7a00;
  color: var(--white);
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0b3a75;
}

.pre-footer-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
}

.pre-footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/*--------------------------------------------------------------
# Section Banner
--------------------------------------------------------------*/
.section-banner {
  width: 100%;
  height: 320px;
  background: url('../../assets/images/contact.png') center/cover no-repeat;
  position: relative;
  margin: 0px 0px 0px;
}

/* Overlay */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
}

/* Content */
.banner-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  color: white;
}

.banner-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* Button */
.banner-btn {
  display: inline-block;
  background: #c65a3a;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #9f4228;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .section-banner {
    height: 220px;
  }

  .banner-content h2 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Bulk Section
--------------------------------------------------------------*/
.bulk-section {
  padding: 50px 0;
  background: rgba(250,247,242,0.9), rgba(250,247,242,0.6);
  font-family: 'Poppins', sans-serif;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* LEFT IMAGE */
.bulk-image {
  width: 55%;
  height: 360px;
}

.bulk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CARD */
.bulk-content {
  width: 45%;
  background: white;
  padding: 40px 36px;
}

.bulk-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* BULLET POINTS */
.bulk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.bulk-points li {
  font-size: 14.5px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.bulk-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c07a3f;
}

/* CONTACT ROW */
.bulk-contact {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bulk-wrapper {
    flex-direction: column;
  }

  .bulk-image,
  .bulk-content {
    width: 100%;
  }

  .bulk-image {
    height: 280px;
  }
}

@media(max-width: 600px){
  .bulk-content {
    padding: 26px 20px;
  }

  .bulk-content h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-bags {
  background: linear-gradient(180deg, #FAF8F5, #ffffff);
  font-family: var(--font-main);
}

/* HEADER */
.contact-mini-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-main-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.contact-sub-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--text-dark);
}

.contact-description {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

/* PANELS */
.contact-info-panel,
.contact-form-panel {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-panel:hover,
.contact-form-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

/* PANEL TITLES */
.panel-title {
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 22px;
}

/* INFO ITEMS */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* NOTE */
.contact-highlight {
  margin-top: 20px;
  padding: 14px 16px;
  background: #FFF6F0;
  border-left: 4px solid var(--accent);
  font-size: 14px;
  border-radius: 10px;
  color: var(--text-dark);
}

/* FORM */
.contact-input {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
  transition: 0.3s ease;
}

.contact-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(198,90,58,0.3);
  outline: none;
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(135deg, var(--accent), #9F4229);
  color: white;
  font-weight: 800;
  padding: 12px 36px;
  border-radius: 40px;
  border: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  background: #00234d;
}

/* MAP */
.map-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,0.14);
  transition: transform 0.3s ease;
}

.map-box:hover {
  transform: translateY(-3px);
}

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

/* MOBILE */
@media(max-width: 992px) {
  .contact-main-title {
    font-size: 32px;
  }

  .contact-sub-title {
    font-size: 20px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 28px;
  }

  .map-box iframe {
    height: 300px;
  }
}

@media(max-width: 768px) {
  .contact-main-title {
    font-size: 28px;
  }

  .contact-sub-title {
    font-size: 18px;
  }

  .contact-description {
    font-size: 15px;
  }

  .contact-input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .contact-btn {
    font-size: 14px;
    padding: 10px 28px;
  }

  .map-box iframe {
    height: 250px;
  }
}

@media(max-width: 420px) {
  .contact-main-title {
    font-size: 24px;
  }

  .contact-sub-title {
    font-size: 16px;
  }

  .map-box iframe {
    height: 200px;
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}