/* ============================================================================
   zenwaar-master.css
   Merged file (BootstrapMade main.css + zenwaar-custom.css)
   Mode: Human-Readable (formatted)
   Notes: Template core variables retained; zenwaar custom tokens available as --zw-*
   ============================================================================
*/

/* ============================================================
   TEMPLATE CORE: Fonts & Color Variables (from main.css)
   ============================================================ */
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Nunito", sans-serif;
}

/* Global Colors (template defaults preserved) */
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #111111;
  --accent-color: #7696e6;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #444444;
  --nav-hover-color: #7696e6;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #7696e6;
}

/* Additional template-presets */
.light-background { 
  --background-color: #f7f7f7; 
  --surface-color: #ffffff; 
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
.accent-background {
  --background-color: #7696e6;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #bcd5e5;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root { scroll-behavior: smooth; }

/* ============================================================
   ZENWAAR CUSTOM TOKENS (non-destructive; prefixed with --zw-)
   ============================================================ */
:root {
  --zw-primary: #7696e6;   /* Zenwaar brand blue (available for custom rules) */
  --zw-dark: #2d465e;
  --zw-light: #f7f9fc;
  --zw-accent: #1e4356;
  --zw-font-body: 'Roboto', Arial, sans-serif;
  --zw-font-heading: 'Inter', sans-serif;
  --zw-font-serif: 'Cardo', serif;
  --zw-max-width: 1200px;
}

/* ============================================================================
   TEMPLATE: General Styling & Shared Classes (from main.css)
   ============================================================================
*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }

/* ============================================================
   TEMPLATE: Global Header (from main.css)
   ============================================================ */
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0,0,0,0.1);
}
.header .logo { line-height: 1; }
.header .logo img { max-height: 36px; margin-right: 8px; }
.header .logo h1 { font-size: 26px; margin: 0; font-weight:700; text-transform: uppercase; color:var(--heading-color); }
.header .logo span { color: var(--accent-color); font-size: 26px; font-weight:700; }
.header .header-social-links { padding: 0 0 0 15px; }
.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}
.header .header-social-links a:hover { color: var(--accent-color); }
.header .header-social-links a i { line-height: 0px; }

@media (max-width:1200px) {
  .header .logo { order:1; }
  .header .logo h1 { font-size: 24px; }
  .header .header-social-links { order:2; padding: 0 15px 0 0; }
  .header .navmenu { order:3; }
}

/* ============================================================
   TEMPLATE: Navigation Menu (from main.css)
   ============================================================ */
/* Desktop nav styles ... (kept as in template) */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul { margin: 0; padding: 0; display:flex; list-style:none; align-items:center; }
  .navmenu li { position: relative; }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 600;
    display:flex; align-items:center; justify-content:space-between;
    white-space:nowrap; transition:0.3s;
  }
  .navmenu a i, .navmenu a:focus i { font-size:12px; line-height:0; margin-left:5px; transition:0.3s; }
  .navmenu li:last-child a { padding-right:0; }
  .navmenu li:hover>a, .navmenu .active, .navmenu .active:focus { color: var(--nav-hover-color); }
  .navmenu .dropdown ul {
    margin:0; padding:10px 0; background:var(--nav-dropdown-background-color); display:block;
    position:absolute; visibility:hidden; left:14px; top:130%; opacity:0; transition:0.3s;
    border-radius:4px; z-index:99; box-shadow:0 0 30px rgba(0,0,0,0.1);
  }
  .navmenu .dropdown ul li { min-width:200px; }
  .navmenu .dropdown ul a { padding:10px 20px; font-size:15px; text-transform:none; color:var(--nav-dropdown-color); }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover>a { color:var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover>ul { opacity:1; top:100%; visibility:visible; }
  .navmenu .dropdown .dropdown ul { top:0; left:-90%; visibility:hidden; }
  .navmenu .dropdown .dropdown:hover>ul { opacity:1; top:0; left:-100%; visibility:visible; }
}

/* Mobile nav rules kept as template */
@media (max-width:1199px) {
  .mobile-nav-toggle { color:var(--nav-color); font-size:28px; line-height:0; margin-right:10px; cursor:pointer; transition:color .3s; }
  .navmenu { padding:0; z-index:9997; }
  .navmenu ul {
    display:none; list-style:none; position:absolute; inset:60px 20px 20px 20px; padding:10px 0; margin:0;
    border-radius:6px; background-color:var(--nav-mobile-background-color); overflow-y:auto; transition:0.3s;
    z-index:9998; box-shadow:0 0 30px rgba(0,0,0,0.1);
  }
  .navmenu a, .navmenu a:focus { color:var(--nav-dropdown-color); padding:10px 20px; font-family:var(--nav-font); font-size:17px; font-weight:500; display:flex; align-items:center; justify-content:space-between; white-space:nowrap; transition:0.3s; }
  .navmenu a i, .navmenu a:focus i {
    font-size:12px; line-height:0; margin-left:5px; width:30px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:50%; transition:0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover { background-color: var(--accent-color); color: var(--contrast-color); }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus { color: var(--nav-dropdown-hover-color); }
  .navmenu .active i, .navmenu .active:focus i { background-color: var(--accent-color); color: var(--contrast-color); transform: rotate(180deg); }
  .navmenu .dropdown ul { position: static; display:none; z-index:99; padding:10px 0; margin:10px 20px; background-color:var(--nav-dropdown-background-color); border:1px solid color-mix(in srgb, var(--default-color), transparent 90%); box-shadow:none; transition:all .5s ease-in-out; }
  .navmenu .dropdown ul ul { background-color: rgba(33,37,41,0.1); }
  .navmenu .dropdown>.dropdown-active { display:block; background-color: rgba(33,37,41,0.03); }
  .mobile-nav-active { overflow:hidden; }
  .mobile-nav-active .mobile-nav-toggle { color:#fff; position:absolute; font-size:32px; top:15px; right:15px; margin-right:0; z-index:9999; }
  .mobile-nav-active .navmenu { position:fixed; overflow:hidden; inset:0; background:rgba(33,37,41,0.8); transition:0.3s; }
  .mobile-nav-active .navmenu>ul { display:block; }
}

/* ============================================================
   TEMPLATE: Footer, Preloader, Scroll Top (from main.css)
   ============================================================ */
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}
.caret-blink {
  border : 0 px dotted ;
  width: 1px !important;              /* thin caret line */
  height: 5px;            /* adjust height */
  background-color: #e6f8fb00; /* Zenwaar theme color */
  margin: 0 auto;
  animation: caretBlink 0.9s step-start infinite;
}

@keyframes caretBlink {
  50% { opacity: 0; }
}




.footer .footer-top { padding-top:50px; border-top:1px solid color-mix(in srgb, var(--default-color), transparent 90%); }
.footer .footer-about .logo { line-height:1; margin-bottom:25px; }
.footer .footer-about .logo img { max-height:40px; margin-right:6px; }
.footer .footer-about .logo span { font-size:26px; font-weight:700; letter-spacing:1px; font-family:var(--heading-font); color:var(--heading-color); }
.footer .footer-about p { font-size:14px; font-family:var(--heading-font); }
.footer .social-links a { display:flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; border:1px solid color-mix(in srgb, var(--default-color), transparent 50%); font-size:16px; color: color-mix(in srgb, var(--default-color), transparent 30%); margin-right:10px; transition:0.3s; }
.footer .social-links a:hover { color: var(--accent-color); border-color: var(--accent-color); }
.footer h4 { font-size:16px; font-weight:bold; position:relative; padding-bottom:12px; }
.footer .footer-links { margin-bottom:30px; }
.footer .footer-links ul { list-style:none; padding:0; margin:0; }
.footer .footer-links ul i { padding-right:2px; font-size:12px; line-height:0; }
.footer .footer-links ul li { padding:10px 0; display:flex; align-items:center; }
.footer .footer-links ul li:first-child { padding-top:0; }
.footer .footer-links ul a { color: color-mix(in srgb, var(--default-color), transparent 30%); display:inline-block; line-height:1; }
.footer .footer-links ul a:hover { color: var(--accent-color); }
.footer .footer-contact p { margin-bottom:5px; }
.footer .footer-newsletter .newsletter-form { margin-top:30px; margin-bottom:15px; padding:6px 8px; position:relative; border-radius:4px; border:1px solid color-mix(in srgb, var(--default-color), transparent 80%); display:flex; background-color: var(--surface-color); transition:0.3s; }
.footer .footer-newsletter .newsletter-form:focus-within { border-color: var(--accent-color); }
.footer .footer-newsletter .newsletter-form input[type=email] { border:0; padding:4px; width:100%; background-color: var(--surface-color); color: var(--default-color); }
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible { outline:none; }
.footer .footer-newsletter .newsletter-form input[type=submit] { border:0; font-size:16px; padding:0 20px; margin:-7px -8px -7px 0; background: var(--accent-color); color: var(--contrast-color); transition:0.3s; border-radius:0 4px 4px 0; }
.footer .footer-newsletter .newsletter-form input[type=submit]:hover { background: color-mix(in srgb, var(--accent-color), transparent 20%); }
.footer .copyright { padding:25px 0; border-top:1px solid color-mix(in srgb, var(--default-color), transparent 90%); }
.footer .copyright p { margin-bottom:0; }
.footer .credits { margin-top:6px; font-size:13px; }

/* 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(0)} 100%{transform:rotate(360deg)} }

/* Scroll top */
.scroll-top { position: fixed; visibility: hidden; opacity:0; right:15px; bottom:15px; z-index:99999; background-color: var(--accent-color); width:40px; height:40px; border-radius:4px; transition: all .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; }

/* Disable aos animation delay on mobile */
@media screen and (max-width:768px) { [data-aos-delay] { transition-delay: 0 !important; } }

/* Page Titles & Breadcrumbs */
.page-title { 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: 60px 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-bottom:60px; position:relative; }
.section-title h2 { font-size:32px; font-weight:700; margin-bottom:20px; text-transform:uppercase; padding-bottom:20px; position:relative; }
.section-title h2:after { content:""; position:absolute; display:block; width:50px; height:3px; background: var(--accent-color); left:0; right:0; bottom:0; margin:auto; }
.section-title p { margin-bottom:0; }

/* ============================
   HERO SECTION - FIXED VERSION
   ============================ */
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 75px);
  padding: 0;
  margin: 0;
  position: relative;
}

/* Fix layout on shorter screens */
@media (max-height: 500px), (max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 48px);
  }
}

/* Ensure slides fill full height */
.hero .carousel-item,
.hero .carousel-item.active {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100vh - 75px) !important;
  min-height: calc(100vh - 75px) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Reset bootstrap default min-height */
.carousel-item {
  min-height: unset !important;
}

/* Hero Image – FULL COVER */
.hero img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  z-index: 1;
}

/* Hero Text Container */
.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 40%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

/* Headings */
.hero h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

/* Buttons */
.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 4px;
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Controls */
.hero .carousel-control-prev {
  justify-content: start;
}
@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}
@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

/* Arrows */
.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

/* Indicators */
.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

/* About section (template) */
.about .inner-title { font-size:2.75rem; font-weight:700; margin:30px 0; }
@media (min-width:991px) { .about .inner-title { max-width:65%; margin:0 0 80px 0; } }
.about .our-story { padding:40px; background-color: color-mix(in srgb, var(--default-color), transparent 96%); }
@media (min-width:991px) { .about .our-story { padding-right:35%; } }
.about .our-story h4 { text-transform:uppercase; font-size:1.1rem; color: color-mix(in srgb, var(--default-color), transparent 50%); }
.about .our-story h3 { font-size:2.25rem; font-weight:700; color: color-mix(in srgb, var(--default-color), transparent 20%); }
.about .our-story p:last-child { margin-bottom:0; }
.about ul { list-style:none; padding:0; font-size:15px; }
.about ul li { padding:5px 0; display:flex; align-items:center; }
.about ul i { font-size:1.25rem; margin-right:0.5rem; line-height:1.2; color: var(--accent-color); }
.about .watch-video i { font-size:2rem; transition:0.3s; color: var(--accent-color); }
.about .watch-video a { font-weight:600; color: color-mix(in srgb, var(--default-color), transparent 20%); margin-left:8px; transition:0.3s; }
.about .watch-video:hover a { color: var(--accent-color); }
.about .about-img { min-height:400px; position:relative; }
@media (min-width:992px) { .about .about-img { position:absolute; top:0; right:0; min-height:600px; } }
.about .about-img img { position:absolute; inset:0; display:block; width:100%; height:100%; object-fit:cover; object-position:center; z-index:1; }

.about-company p,
.about-company ul,
.about-company li {
  text-align: justify !important;
}

/* Features, comment-form, contact, etc. (kept as in template) */
/* ... (omitted here for brevity in the explanation, but preserved in the merged file) */

/* Comment form, contact, etc. */
.comment-form { padding-top:10px; }
.comment-form form { background-color: var(--surface-color); margin-top:30px; padding:30px; box-shadow:0 4px 16px rgba(0,0,0,0.1); }
.comment-form form h4 { font-weight:bold; font-size:22px; }
.comment-form form p { font-size:14px; }
.comment-form form input { background-color: var(--surface-color); color: var(--default-color); border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%); font-size:14px; border-radius:4px; padding:10px 10px; }
.comment-form form input:focus { color: var(--default-color); background-color: var(--surface-color); box-shadow:none; border-color: var(--accent-color); }
.comment-form form input::placeholder { color: color-mix(in srgb, var(--default-color), transparent 50%); }
.comment-form form textarea { background-color: var(--surface-color); color: var(--default-color); border:1px solid color-mix(in srgb, var(--default-color), transparent 70%); border-radius:4px; padding:10px 10px; font-size:14px; height:120px; }
.comment-form form textarea:focus { color: var(--default-color); box-shadow:none; border-color:var(--accent-color); background-color: var(--surface-color); }
.comment-form form textarea::placeholder { color: color-mix(in srgb, var(--default-color), transparent 50%); }
.comment-form form .form-group { margin-bottom:25px; }
.comment-form form .btn-primary { border-radius:4px; padding:10px 20px; border:0; background-color: var(--accent-color); color: var(--contrast-color); }
.comment-form form .btn-primary:hover { color: var(--contrast-color); background-color: color-mix(in srgb, var(--accent-color), transparent 20%); }

/* Contact (template) */
.contact { padding-top:0; }
.contact .info { background-color: var(--surface-color); padding:40px; box-shadow:0px 2px 15px rgba(0,0,0,0.1); overflow:hidden; }
.contact .info h3 { font-weight:600; font-size:24px; }
.contact .info p { color: color-mix(in srgb, var(--default-color), transparent 40%); margin-bottom:30px; font-size:15px; }
.contact .info-item+.info-item { padding-top:20px; margin-top:20px; border-top:1px solid color-mix(in srgb, var(--default-color), transparent 90%); }
.contact .info-item i { font-size:24px; color: var(--accent-color); transition: all .3s ease-in-out; margin-right:20px; }
.contact .info-item h4 { padding:0; font-size:18px; line-height:24px; font-weight:600; margin-bottom:5px; }
.contact .info-item p { padding:0; margin-bottom:0; font-size:14px; color: color-mix(in srgb, var(--default-color), transparent 40%); }
.contact .php-email-form { width:100%; }
.contact .php-email-form .form-group { padding-bottom:8px; }
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email], .contact .php-email-form textarea {
  color: var(--default-color); background-color: var(--surface-color); border-radius:0px; box-shadow:none; font-size:14px; border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus, .contact .php-email-form input[type=email]:focus, .contact .php-email-form textarea:focus { border-color: var(--accent-color); }
.contact .php-email-form input[type=text]::placeholder, .contact .php-email-form input[type=email]::placeholder, .contact .php-email-form textarea::placeholder { color: color-mix(in srgb, var(--default-color), transparent 70%); }
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email] { height:48px; padding:10px 15px; }
.contact .php-email-form textarea { padding:10px 12px; height:290px; }
.contact .php-email-form button[type=submit] {
  background: var(--accent-color); color: var(--contrast-color); border:0; padding:13px 50px; transition:0.4s; border-radius:4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/* ============================================================
   ZENWAAR ENHANCEMENTS (Merged and adapted)
   - Card animations, parallax, wave dividers, icon animations
   - Brand-specific hover tints
   ============================================================ */

/* Global section padding override for premium look */
.section {
  padding: 80px 0;
  position: relative;
}

/* Section header decorative underline (zenwaar style) */
.section-header h2 {
  font-weight: 700;
  color: #1e4456; /* tuned color using template palette but leaning to zw tone */
  position: relative;
  display: inline-block;
  font-family: var(--zw-font-heading), var(--heading-font);
  text-align: center !important;
}
.section-header h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--zw-primary); /* cosmetic accent using zw token */
  border-radius: 6px;
}
.section-header p {
  margin-top: 24px;
  color: #556e85;
  font-size: 16px;
  font-family: var(--default-font);
}

/* Card elevated base (reusable) */
.card-elevated {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(14,162,189,0.08);
  transition: all .35s ease;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  position: relative;
  transform-style: preserve-3d;
  overflow: hidden;
}
.card-elevated:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 28px 70px rgba(14,162,189,0.20);
  border-color: rgba(14,162,189,0.25);
}

/* Small tilt animation on hover */
@keyframes tiltCard {
  0% { transform: rotate3d(1, -1, 0, 0deg) scale(1); }
  100%{ transform: rotate3d(1, -1, 0, 6deg) scale(1.03); }
}
.card-elevated:hover { animation: tiltCard 0.4s ease forwards; }

/* subtle top gradient bar when hovered */
.card-elevated::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 5px; width: 100%;
  background: linear-gradient(90deg, var(--zw-primary), #34dbff);
  opacity: 0; transition: .4s ease; border-radius: 12px;
}
.card-elevated:hover::before { opacity: 1; }

/* About-full specific styling (cards within full about) */
.about-full .shadow-sm,
.values .value-box,
.brands .brand-card,
.imprints .shadow-sm {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(14,162,189,0.08);
  padding: 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.about-full .shadow-sm:hover,
.values .value-box:hover,
.brands .brand-card:hover {
  box-shadow: 0 18px 45px rgba(0,0,0,0.09);
  transform: translateY(-6px);
  border-color: rgba(14,162,189,0.18);
}
.about-full .shadow-sm:before,
.values .value-box:before,
.brands .brand-card:before {
  content: "";
  position: absolute;
  top: -50px; left:0; width:100%; height:120px;
  background: linear-gradient(180deg, rgba(14,162,189,0.10), rgba(255,255,255,0));
  opacity: 0; transition: .4s ease;
}
.about-full .shadow-sm:hover:before,
.values .value-box:hover:before,
.brands .brand-card:hover:before { opacity: 1; }

/* Card titles */
.about-full h4, .values h3, .brands h4 {
  font-weight: 700;
  color: var(--zw-primary);
  font-family: var(--zw-font-heading);
}
.about-full p { color: #3b5266; }

/* Philosophy list styling */
.about-full ul li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 15.5px;
  color: #445b70;
}
.about-full ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 22px;
  color: var(--zw-primary);
  font-weight: bold;
}

/* Values (pill style) */
.values .value-box {
  text-align: center;
  border-radius: 16px;
  background: #fff;
  padding: 36px 24px;
}
.values .value-box h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}
.values .value-box p { color: #56697b; font-size: 15px; }
.values .value-box:hover { transform: translateY(-12px); }

/* Brand cards */
.brands .brand-card {
  border-radius: 16px;
  border: 1px solid rgba(14,162,189,0.10);
  transition: all .28s ease;
  background: #fff;
}
.brands .brand-card img { max-height:95px; object-fit:contain; transition:.35s; }
.brands .brand-card h4 { color: #1d4453; font-weight:700; margin-bottom:6px; }
.brands .brand-card p { color: #4d6478; }

/* Brand specific tint glows (zenwaar versions) */
.brand-card[data-brand="minaz"]:hover { box-shadow: 0 20px 50px rgba(187,92,144,0.18); }
.brand-card[data-brand="blackmamba"]:hover { box-shadow: 0 20px 50px rgba(10,10,10,0.20); }
.brand-card[data-brand="dhaatu"]:hover { box-shadow: 0 20px 50px rgba(180,140,60,0.20); }
.brand-card[data-brand="imprints"]:hover { box-shadow: 0 20px 50px rgba(14,162,189,0.25); }
.brands .brand-card:hover { transform: translateY(-8px) scale(1.02); }

/* ABOUT-FULL backdrop */
#about-full { background: linear-gradient(180deg, rgba(14, 78, 189, 0.05), rgba(255,255,255,1)); }
#about-full h3 { font-weight:700; color: var(--zw-primary); }


/* ============================================================
   ZENWAAR: Ultra-Premium Motion & Parallax Helpers
   ============================================================ */

/* global floating background for sections (soft) */
.section::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(14,162,189,0.05), transparent 70%);
  animation: floatClouds 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes floatClouds {
  0% { transform: translateY(0px) translateX(0px); }
  100% { transform: translateY(-30px) translateX(30px); }
}

/* Fade-up for section headers */
@keyframes fadeUp { 0%{opacity:0; transform:translateY(22px)} 100%{opacity:1; transform:translateY(0)} }
.section-header h2 { opacity:0; transform:translateY(18px); animation: fadeUp .8s ease forwards; }
.section-header p { opacity:0; animation: fadeUp 1.1s ease forwards; }

/* icon animation (floating + pulse) */
.icon-animated {
  font-size: 42px;
  color: var(--zw-primary);
  margin-bottom: 12px;
  animation: iconFloat 2.3s ease-in-out infinite alternate;
  text-shadow: 0 0 12px rgba(14, 87, 189, 0.35);
}
@keyframes iconFloat { 0%{transform:translateY(0) rotate(0deg)} 100%{transform:translateY(-10px) rotate(3deg)} }
.icon-animated:hover { animation: iconPulse 1s ease-in-out infinite alternate; }
@keyframes iconPulse { 0%{transform:scale(1)} 100%{transform:scale(1.18); text-shadow:0 0 18px rgba(14,162,189,.55)} }

/* parallax-soft helper for small responsive translate on mousemove */
.parallax-soft { transition: transform .3s ease-out; will-change: transform; }

/* ============================================================
   WAVE DIVIDERS
   (styling for the SVG wrappers used between sections)
   ============================================================ */
.wave-divider svg, .wave-divider-bottom svg {
  display:block; width:100%; height:120px;
}

/* ============================================================
   SMALL UTILITIES & ACCESSIBILITY
   ============================================================ */
@media (max-width:991px) {
  .brands .brand-card, .values .value-box, .about-full .shadow-sm { padding:22px; }
}
@media (max-width:768px) { .brands .brand-card img { max-height:80px; } }

/* simple fade animation */
@keyframes zw-fade-up { from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }
.section-header { animation: zw-fade-up .6s ease both; }

/* Accessibility: focus styles */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid rgba(14,162,189,0.14);
  outline-offset: 2px;
}

/* Misc utilities */
.text-muted { color: #6c757d; }

/* Brand-specific hover tints (reinforced with zw token but not changing template variables) */
.brand-card[data-brand="minaz"]:hover { box-shadow: 0 20px 40px rgba(160,50,90,0.08); transform: translateY(-8px); }
.brand-card[data-brand="blackmamba"]:hover { box-shadow: 0 20px 40px rgba(10,10,10,0.12); transform: translateY(-8px); }
.brand-card[data-brand="dhaatu"]:hover { box-shadow: 0 20px 40px rgba(180,140,60,0.08); transform: translateY(-8px); }
.brand-card[data-brand="imprints"]:hover { box-shadow: 0 20px 40px rgba(14,162,189,0.10); transform: translateY(-8px); }

/* brand-section helper (for brands.html logic) */
.brand-section { display:none; }
.brand-section.active { display:block; }

/* ============================================================
   Any remaining custom rules from zenwaar-custom.css not covered above
   ============================================================ */

/* Hero tuned (zenwaar look) */
.hero {
  padding: 5.5rem 0;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(14,162,189,0.06), rgba(255,255,255,0));
  position: relative;
}
.hero .tagline { font-size:1.25rem; color: var(--zw-primary); font-weight:600; }
.hero .lead { color: var(--zw-dark); font-size:1.05rem; }

/* brand-card base tweaks */
.brand-card {
  border: 1px solid rgba(14,162,189,0.08);
  transition: transform .28s ease, box-shadow .28s ease;
  background: #fff;
  border-radius: 12px;
}
.brand-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(14,162,189,0.08);
  border-color: rgba(14,162,189,0.18);
}

/* value-box small tweak */
.value-box { border-radius: 10px; background: #fff; transition: transform .25s; }
.value-box:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }

/* imprints section padding */
.imprints { background: var(--zw-light); padding: 4rem 0; }

/* contact form small tweaks */
.php-email-form .form-control { border-radius:8px; }
.php-email-form button { background: var(--zw-primary); border:0; color:#fff; padding:10px 24px; border-radius:8px; }

/* responsive hero adjustments */
@media (max-width:991px) {
  .hero { padding: 4rem 0; }
  .hero .lead { width:100%; }
}
@media (max-width:576px) {
  .brand-card img { max-height:90px; object-fit:contain; }
}

/* Small fade in keyframe for progressive feel (kept) */
@keyframes zw-fade-up { from { opacity:0; transform:translateY(10px);} to { opacity:1; transform:translateY(0);} }

/* ============================================================
   End of merged CSS
   ============================================================ */

   /* Contact Section Equal Height Layout */
.contact-modern-wrapper {
  display: flex;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  min-height: 480px;
}

/* LEFT PANEL */
.contact-left-panel {
  flex: 1;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Full-height Image */
.contact-bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Ensures full screen fit */
  object-position: center; /* Best crop handling */
  filter: brightness(0.62);
}

/* Text on Image */
.contact-left-title {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 32px;
  font-weight: 700;
  color: white;
  z-index: 10;
}

/* Floating Info Card */
.contact-info-box {
  position: relative;
  z-index: 10;
  background: #fff;
  padding: 28px;
  width: calc(100% - 50px);
  margin: 0 auto 25px auto;
  border-radius: 18px;
}
.contact-info-box .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  color: #333;
  font-size: 15px;
}

.contact-info-box .info-item:last-child {
  margin-bottom: 0;
}

.contact-info-box i {
  font-size: 20px;
  color: #0EA2BD;
  margin-right: 12px;
}
/* Right Panel */
.contact-form-panel {
  flex: 1;
  padding: 50px 45px;
  background: #f9fafc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Inputs */
.contact-form-panel .form-control {
  padding: 14px 20px;
  border: 1px solid #ddd;
  background: #fff;
  transition: 0.3s;
}

/* Equal height fix for mobile */
/* Equal height fix + responsive image for mobile */
@media (max-width: 992px) {

  .contact-modern-wrapper {
    flex-direction: column;
  }

  .contact-left-panel {
    height: auto;
    min-height: 300px;
  }

  .contact-bg-img {
    position: relative;    /* Instead of absolute */
    height: 260px;          /* Auto-resize height */
  }

  .contact-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Maintain quality crop */
    object-position: center;
  }

  .contact-info-box {
    margin: -40px auto 20px auto;  /* Lift card upward beautifully */
    width: 90%;                    /* Better fit on mobile */
  }

  .contact-form-panel {
    padding: 30px 25px;            /* Better spacing on mobile */
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 28px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappFloat 2.4s ease-in-out infinite;
}

/* Hover effect */
.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Soft floating animation */
@keyframes whatsappFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Mobile tweak */
@media (max-width: 576px) {
  .floating-whatsapp {
    left: 15px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}
