/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* GLOBAL */
body {
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 120px; 
}
html, body {
  overflow-x: hidden;
}
.textfont {
	font-size: 16px !important;
}
/* HERO */
.home-title { font-size: 52px; }
/* MAIN SECTION TITLES */
.products-title,
.about-title,
.team-title,
.gallery-title,
.contact-title,
.map-title,
.faq-title,
.final-cta-title {
  font-weight: 700;
   font-family: 'Georgia', serif;
  font-size: 48px;
  color: #f57c00;
  text-align: center;
  margin-top: 0;    
  margin-bottom: 20px;   
 }
/* SUBHEADINGS */
.contact-subtitle,
.map-subtitle,
.faq-subtitle,
.final-cta-text {
  font-size: 22px;
  font-weight: 500;
}


/* INNER SECTION HEADINGS */
.team-text h3,
.contact-info h3,
.faq-cta h3 {
  font-size: 28px;
  font-weight: 600;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* ================= TOP BAR ================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #f5f5f5;
  z-index: 1000;
}
.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
/* ICONS + CONTACT */
.topbar a,
.topbar span {
  font-size: 16px;
  color: #333;
  margin-right: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.topbar a i {
  font-size: 16px;
  transition: transform 0.2s ease, color 0.3s ease;
}
/* HOVER EFFECTS (TOP BAR) */
.topbar a:hover,
.topbar span:hover {
  color: #f57c00;
  cursor: pointer;
}
.topbar a:hover i {
  transform: scale(1.15);
  color: #f57c00;
}
/* ================= HEADER ================= */
.main-header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #a3a3a3;
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
/* LOGO */
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo img {
  height: 55px;        
  width: auto;
  transition: transform 0.3s ease;
}
/* hover effect */
.logo:hover img {
  transform: scale(1.05);
}
/* LOGO WITH BRAND NAME */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-name {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000; /* BLACK */
  transition: color 0.3s ease;
}
/* When header is NOT scrolled (gray bg) */
.main-header .brand-name {
  color: #000;
}
/* When header is scrolled (white bg) */
.main-header.scrolled .brand-name {
  color: #000;
}
/* Hover effect */
.logo-link:hover .brand-name {
  color: #f57c00;
}
/* NAV */
.nav ul {
  list-style: none;
}
.nav ul li {
  display: inline-block;
  margin-left: 28px;
}
.nav ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 16px !important;
  letter-spacing: 1px;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
/* MENU UNDERLINE EFFECT */
.nav ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f57c00;
  transition: width 0.3s ease;
}
.nav ul li a:hover:after {
  width: 100%;
}
.nav ul li a:hover {
  color: #f57c00;
}
/* ================= ACTIVE MENU ================= */
.nav ul li a.active {
  color: #f57c00;
}
.nav ul li a.active::after {
  width: 100%;
}
/* ================= SCROLL EFFECT ================= */
.main-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.main-header.scrolled .logo,
.main-header.scrolled .nav ul li a {
  color: #000;
}
.main-header.scrolled .nav ul li a:after {
  background: #f57c00;
}
.main-header.scrolled .nav ul li a:hover {
  color: #f57c00;
}
/* ================= MOBILE ================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}
.menu-toggle:hover {
  color: #f57c00;
}
.main-header.scrolled .menu-toggle {
  color: #000;
}
/* Fix Gallery color when header becomes white */
.main-header.scrolled .dropdown-title {
  color: #000;
}

/* Hover color */
.main-header.scrolled .dropdown-title:hover {
  color: #f57c00;
}
/* Keep dropdown items white when header is scrolled */
.main-header.scrolled .dropdown-menu li a {
  color: #fff !important;
}

/* Hover color */
.main-header.scrolled .dropdown-menu li a:hover {
  color: #f57c00;
}
/* Make header & topbar container left-aligned */
.topbar .container,
.main-header .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 50px;    
  padding-right: 90px;
}
/* ===== DROPDOWN MENU ===== */

.dropdown {
  position: relative;
}

/* Gallery label */
.dropdown-title {
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding-bottom: 5px;
}

/* Dropdown list */
.dropdown-menu {
  width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  list-style: none;
  display: none;
  background: #111;
  border-radius: 6px;
  border: 1px solid rgba(245,124,0,0.25);
  padding: 0;
}

/* Fix dropdown item layout */
.dropdown-menu li {
  display: block !important;
  margin: 0 !important;
  width: 100%;
}

/* Links */
.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 12px 16px;
  box-sizing: border-box;   /* important */
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover */
.dropdown-menu li a:hover {
  background: rgba(163, 163, 163, 0.4);
  color: #f57c00;              /* TEXT VISIBLE */
}
/* Desktop hover */
@media (hover: hover) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Click open (mobile + desktop) */
.dropdown.open .dropdown-menu {
  display: block;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  body {
    padding-top: 110px;
  }
  .brand-name {
    font-size: 20px;
  }
  .nav ul {
    display: none;
    position: relative;
    top: 80px;
    left: 0;
    width: 100%;
    background: #000;
    text-align: center;
  }
  .main-header.scrolled .nav ul {
    background: #fff;
  }
.nav ul li {
  display: block;
  margin: 0;
}
  .menu-toggle {
    display: block;
    font-size: 26px;
  }
  .nav ul.show {
    display: block;
  }
/* ===== RESPONSIVE DROPDOWN ===== */
.dropdown {
  width: 100%;
}
/* dropdown list */
.dropdown-menu {
  position: static;   /* important */
  width: 100%;
  background: #111;
  border-radius: 6px;
  border: 1px solid rgba(245,124,0,0.25);
  display: none;
  margin-top: 8px;
}

/* show when open */
.dropdown.open .dropdown-menu {
  display: block;
}

/* dropdown items */
.dropdown-menu li {
  width: 100%;
  margin: 0;
}

/* links */
.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
}
}
@media (max-width: 768px) {

  body {
    padding-top: 110px;
  }

  .topbar .container,
  .main-header .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .topbar-flex {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  .topbar {
    height: auto;
    padding: 10px 0;
  }

  .topbar a,
  .topbar span {
    font-size: 14px;
    margin-right: 8px;
    white-space: nowrap;
  }

  /* HEADER */

  .main-header {
    height: 70px;
  }

  .header-flex {
    height: 70px;
    padding-top: 20px;
  }

  .logo img {
    height: 45px;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 1px;
  }

  /* MOBILE MENU */

  .nav ul {
	z-index: 2000;
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    text-align: center;
    padding: 20px 0;
  }

  .main-header.scrolled .nav ul {
    background: #fff;
  }

  .nav ul.show {
    display: block;
  }

.nav ul li {
  display: block;
  margin: 0;
  position: relative;
}

  .menu-toggle {
    display: block;
    font-size: 26px;
  }

  .nav ul li a:after {
    left: 50%;
    transform: translateX(-50%);
  }


.dropdown{
  position: relative;
  z-index: 3000;
  width:100%;
  display:block;
}

/* Gallery title */
.dropdown-title{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  cursor:pointer;
}

/* arrow */
.dropdown-title::after{
  content:"▼";
  font-size:12px;
  transition:transform .3s ease;
}

.dropdown.open .dropdown-title::after{
  transform:rotate(180deg);
}

/* make dropdown push items below */
.dropdown-menu{
  z-index: 4000;
  position: relative;
  width:100%;
  background:#111;
  border-radius:6px;
  border:1px solid rgba(245,124,0,0.25);
  margin-top:6px;
  display:none;
  z-index:10000;   /* ADD THIS */
}
/* open dropdown */
.dropdown.open .dropdown-menu{
  display:block;
}

/* ensure contact & faq move down */
.dropdown-menu li{
  display:block;
  width:100%;
}

.dropdown-menu li a{
  display:block;
  padding:12px 16px;
  text-align:center;
}
.main-header.scrolled .dropdown-menu{
  background:#fff !important;
}

.main-header.scrolled .dropdown-menu li a{
  color:#111 !important;
}
.nav{
  overflow: visible;
}

.nav ul{
  overflow: visible;
}
}

/* Footer */
.footer-dark {
  background: #6e6e6e;          
  color: #fff;               
}

/* Bottom Area */
.footer-bottom-dark {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 22px 0;
  text-align: center;
  font-size: 17px;      /* ONE uniform size */
  color: #fff;
}
/* Make ALL footer text same size */
.footer-bottom-dark p,
.footer-bottom-dark strong,
.footer-bottom-dark a,
.footer-bottom-dark span {
  font-size: 17px;
}
/* Keep only color styling */
.footer-bottom-dark strong {
  color: #f57c00;
}
.footer-bottom-dark .credits {
  margin-top: 6px;
}
.footer-bottom-dark .credits a {
  color: orange;               
  text-decoration: none;
}
.footer-bottom-dark .credits a:hover {
  text-decoration: underline;
}
/* ================= HOME  ================= */
.home-hero {
  margin-top: -90px;
  position: relative;
  min-height: calc(100vh - 120px);  
  background: url("../images/bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;    
  justify-content: center;
}
.home-hero .reveal {
  opacity: 0;
  transform: translateY(40px);
}
.home-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); 
}
.home-content {
  position: relative;
  max-width: 900px;
  color: #fff;
  z-index: 1;
}
.home-subtitle {
  font-family: 'Georgia', serif;
  letter-spacing: 3px;
  font-style: italic;
  color: #ff4d2d;
  margin-bottom: 15px;
}
.home-title {
  font-family: 'Georgia', serif;
  line-height: 1.2;
  margin-bottom: 25px;
}
.home-description {
  line-height: 1.7;
  color: #eaeaea;
  margin-bottom: 15px;
}
.home-btn {
  display: inline-flex;
  align-items: center;

  margin-top: 25px;
  padding: 14px 34px;
  background: #ff4d2d;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease;
}
/* Hover background */
.home-btn:hover {
  background: #e63e22;
}
/* Arrow container */
.home-btn .btn-arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
/* Default symbol: > */
.home-btn .btn-arrow::before {
  content: ">";
  font-weight: 700;
}
/* Hover symbol: → */
.home-btn:hover .btn-arrow::before {
  content: "→";
}
/* Small slide animation on hover */
.home-btn:hover .btn-arrow {
  transform: translateX(6px);
}
/* ================= SCROLL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* stagger effect */
.reveal.delay-1 { transition-delay: 0.2s; }
.reveal.delay-2 { transition-delay: 0.4s; }
.reveal.delay-3 { transition-delay: 0.6s; }
.reveal.delay-4 { transition-delay: 0.8s; }
/* ================= CAROUSEL ================= */
.carousel-section {
  padding: 90px 0;
  background: #f7f9ff;
  overflow: hidden;
}
.carousel-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #f57c00;
}
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 50px;
  animation: scroll-carousel 30s linear infinite;
}
.carousel-item {
  min-width: 200px;
  height: 150px;
  overflow: hidden;
/*   border-radius: 12px;
  border: 2px solid #f57c00;    */
  background: #000;
  /* box-shadow: 0 0 18px rgba(245,124,0,0.35); */
}
/* .carousel-item:hover {
  box-shadow: 0 0 25px rgba(245,124,0,0.8);
} */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;   
  background: #fff;      
}
/* Animation */
@keyframes scroll-carousel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-90%);
  }
}
/* Pause on hover */
.carousel-track:hover {
  animation-play-state: paused;
}
/* RESPONSIVE */
@media (max-width: 768px) {
	.home-hero {
    margin-top: 0; /* prevent negative overlap */
  }
  .carousel-item {
    min-width: 240px;
    height: 160px;
  }
   .carousel-item {
    min-width: 240px;
    height: 160px;
  }
}
@media (min-width: 992px) {
  .home-hero {
    min-height: 70vh;
  }
}
/* ================= FINAL CTA SECTION ================= */
.final-cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #0b0b0b,
    #000
  );
  text-align: center;
  border-top: 1px solid rgba(245,124,0,0.25);
}
.final-cta-title {
  font-family: 'Georgia', serif;
  color: #f57c00;
  margin-bottom: 18px;
}
.final-cta-text {
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #e0e0e0;
}
/* BUTTON GROUP */
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* OUTLINE BUTTON */
.home-btn.outline {
  background: transparent;
  border: 2px solid #f57c00;
  color: #f57c00;
}
.home-btn.outline:hover {
  background: #f57c00;
  color: #000;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .final-cta-section {
    padding: 90px 0;
  }
  .final-cta-title {
    font-size: 34px;
  }
  .final-cta-text {
    font-size: 16px;
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-bottom-dark {
    font-size: 13.5px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .footer-bottom-dark {
    padding: 20px 14px;
    font-size: 13px;
  }

  .footer-bottom-dark .credits {
    margin-top: 10px;
    display: block;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .footer-bottom-dark {
    padding: 18px 12px;
    font-size: 12.5px;
  }
  .footer-bottom-dark strong {
    display: block;          /* avoid cramped line */
    margin-top: 4px;
  }
}
/* Extra Small Devices */
@media (max-width: 360px) {
  .footer-bottom-dark {
    font-size: 12px;
  }
}
/* ================= about PAGE – EDITORIAL STYLE ================= */
.about-section {
  position: relative;
  background: url("../images/bg.jpg") center / cover no-repeat;
  overflow: hidden;
}
/* Dark overlay for readability */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); 
  z-index: 0;
}
/* Keep content above overlay */
.about-section .container {
  position: relative;
  z-index: 1;
}
.about-title {
  font-family: 'Georgia', serif;
  color: #f57c00;
  text-align: center;
}
/* Lead statement */
.about-lead {
  max-width: 950px;
  margin: 0 auto 60px;
}
.about-lead p {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
}
/* Content blocks */
.about-block {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding-left: 20px;
  border-left: 3px solid rgba(245, 124, 0, 0.3);
}
.about-block p {

  line-height: 1.9;
  color: #e0e0e0;
}
.about-block.highlight {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 30px 30px 24px;
  border-left: 4px solid #f57c00;
}
@media (max-width: 768px) {
  .about-title {
    font-size: 34px;
  }
  .about-lead p {
    font-size: 20px;
  }
  .about-block p,
  .about-signature p {
    font-size: 16px;
  }
}
/* ================= TEAM SECTION ================= */
.team-section {
  background: #0b0b0b;
}
.team-title {
  font-family: 'Georgia', serif;
  color: #f57c00;
  text-align: center;
  margin-bottom: 20px;
}
/* ROW */
.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
  background: rgba(200, 200, 200, 0.12);   /* same soft gray */
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245,124,0,0.25);
  padding: 40px;
  border-radius: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/* Default order */
.team-text {
  order: 1;
}
.team-image {
  order: 2;
}
.team-row.reverse .team-text {
  order: 2;
}
.team-row.reverse .team-image {
  order: 1;
}
.team-text {
  flex: 1;
}
.team-text h3 {
  color: #ffffff;
  margin-bottom: 8px;
}
.team-text span {
  display: block;
  font-size: 18px;
  letter-spacing: 1px;
  color: #f57c00;
  margin-bottom: 18px;
}
.team-text p {
  line-height: 1.9;
  color: #e0e0e0;
}
.team-image {
  flex: 1;
}
.team-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  border: 1px solid rgba(245, 124, 0, 0.15);
}
/* ================= SCROLL DIRECTIONS ================= */
.from-left {
  transform: translateX(-190px);
}
.from-right {
  transform: translateX(190px);
}
.reveal.active.from-left,
.reveal.active.from-right {
  transform: translateX(0);
}
@media (max-width: 992px) {
  .team-row,
  .team-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .team-image img {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .team-title {
    font-size: 34px;
    margin-bottom: 60px;
  }
  .team-text p {
    font-size: 16px;
  }
  .about-section {
    padding: 60px 0 80px;
  }
    .about-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .about-lead p {
    font-size: 18px;
    line-height: 1.7;
  }
   .about-block {
    padding-left: 14px;
    margin-bottom: 30px;
  }
  .about-block p {
    font-size: 16px;
    line-height: 1.75;
  }
  .about-block.highlight {
    padding: 20px 18px;
  }
   .about-signature {
    margin-top: 50px;
    padding: 18px 20px;
  }
  .about-signature p {
    font-size: 16px;
    line-height: 1.7;
  }
    .from-left {
    transform: translateX(-40px);
  }
  .from-right {
    transform: translateX(40px);
  }
}
@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }
  .about-lead p {
    font-size: 16px;
  }
  .about-block p,
  .about-signature p {
    font-size: 15px;
  }
}
/* ================= CONTACT SECTION ================= */
.contact-section {
  background: #0b0b0b;
  padding: 40px 0 10px;
  
}
.contact-title {
  font-family: 'Georgia', serif;
  color: #f57c00;
  text-align: center;
  margin-bottom: 10px;
}
.contact-subtitle {
  text-align: center;
  color: #cfcfcf;
  margin-bottom: 70px;
}
/* WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: stretch;
}
/* Contact icons */
.contact-icon {
  color: #f57c00;
  margin-right: 8px;
  font-size: 16px;
}
/* FORM */
.contact-form {
  flex: 1;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(245,124,0,0.12);
}
/* FORM + INFO LIGHT GLASS STYLE */
.contact-form,
.contact-info {
  background: rgba(200, 200, 200, 0.12);   
  backdrop-filter: blur(6px);              
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  border-radius: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}
.contact-form textarea {
  resize: none;
  height: 140px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f57c00;
}
.contact-info a {
  color: rgba(245, 124, 0, 0.75);   
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: #f57c00;
  text-decoration: underline;
}
/* BUTTON */
.contact-form button {
  background: #f57c00;
  color: #fff;
  padding: 14px 32px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #e06900;
}
/* INFO PANEL */
.contact-info {
  flex: 1;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(245,124,0,0.15);
}
.contact-info h3 {
  color: #f57c00;
  margin-bottom: 30px;
}
.contact-info p {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 26px;
}
.contact-info a {
  font-size: 18px;
  font-weight: 600;
}
.contact-info strong {
  color: #ffffff;
  font-size: 20px;
}
/* ================= TOOLTIP ================= */
.tooltip-field {
  position: relative;
  margin-bottom: 18px;
}
/* Tooltip box */
.tooltip {
  position: absolute;
  left: 0;
  bottom: 110%;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 4px;
  border: 1px solid rgba(245,124,0,0.4);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 10;
}
/* Arrow */
.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 18px;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(245,124,0,0.4) transparent transparent transparent;
}
/* Show tooltip on hover & focus */
.tooltip-field:hover .tooltip,
.tooltip-field input:focus + .tooltip,
.tooltip-field textarea:focus + .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Button tooltip positioning */
.tooltip-btn {
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}
.tooltip-field:hover .tooltip-btn {
  transform: translateX(-50%) translateY(0);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .contact-title {
    font-size: 34px;
  }
  .contact-subtitle {
    font-size: 16px;
  }
}
/* ================= MAP SECTION ================= */
.map-section {
  background: #0b0b0b;
  text-align: center;
}
.map-title {
  font-family: 'Georgia', serif;
  color: #f57c00;
  margin-bottom: 16px;
}
.map-subtitle {
  color: #cfcfcf;
  margin-bottom: 60px;
}
/* MAP CONTAINER */
.map-wrapper {
  width: 100%;
  max-width: 1600px;   
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(245,124,0,0.25);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(30%) contrast(1.1);
}
/* Hover effect */
.map-wrapper:hover iframe {
  filter: grayscale(0%);
  transition: filter 0.4s ease;
}
/* Responsive */
@media (max-width: 768px) {
  .map-title {
    font-size: 34px;
  }
  .map-wrapper iframe {
    height: 300px;
  }
}
/* ================= PRODUCTS SECTION ================= */
.products-section {
  background: #0b0b0b;
}
.products-title {
  font-family: 'Georgia', serif;
  text-align: center;
  color: #f57c00;

}
.product-description {
	color: white;
}
/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* PRODUCT CARD */
.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(
    circle at center,
    #383838 0%,
    #252525 60%,
    #141414 100%
  );
  transition: transform 0.4s ease;
}
.product-btn {
	display: inline-block; 
	padding: 10px 26px; 
	background: #f57c00; 
	color: #fff; 
	text-decoration: none; 
	border-radius: 4px; 
	font-size: 14px; 
	opacity: 0; 
	transform: translateY(10px); 
	transition: all 0.3s ease; 
 } 
	/* SHOW BUTTON ON HOVER */ 
.product-card:hover .product-btn { 
    opacity: 1; 
	transform: translateY(0); 
 }
.product-btn-group{
  display:flex;
  gap:16px;
  margin-top:20px;
  align-items:center;
  flex-wrap:nowrap;   /* keep buttons in one line */
}
.product-btn-group .home-btn{
  min-width:170px;
  text-align:center;
  white-space:nowrap;   /* keeps text in one line */
}
/* IMAGE */
.product-card img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
/* PRODUCT DESCRIPTION */
.product-card-desc {
  color: #ffffff;   /* White color */
  font-size: 18px;
  margin: 10px 0;
}
/* INFO BELOW IMAGE */
.product-info {
  padding: 20px;
  text-align: center;
}

/* PRODUCT NAME - ALWAYS VISIBLE */
.product-info h3 {
  font-size: 22px;
  color: #ffffff;      /* WHITE COLOR */
  margin-bottom: 15px;
}

/* Optional image zoom */
.product-card:hover img {
  transform: scale(1.08);
}
.product-card:hover .product-btn,
.product-card:hover .product-card-desc {
  opacity: 1;
  transform: translateY(0);
}
/* ================= SCROLL ANIMATION DIRECTIONS ================= */
.from-top {
  transform: translateY(-40px);
}
.from-bottom {
  transform: translateY(40px);
}
.reveal.active.from-top,
.reveal.active.from-bottom {
  transform: translateY(0);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-title {
    font-size: 36px;
  }
}
/* ================= PRODUCT DETAIL PAGE ================= */
.product-detail-section {
  padding: 20px 0;

  background: #0b0b0b;
  display: flex;
  justify-content: center;   
}
.product-detail{
  display:flex;
  gap:40px;
  align-items:stretch;   /* CHANGE from center → stretch */
  max-width:1000px;
  width:100%;
  margin:auto;
}
.product-image {
  background: rgba(200, 200, 200, 0.18);
  border: 1px solid rgba(245,124,0,0.25);
  padding: 18px;
  border-radius: 18px;
  width: 350px;      
  height: 400px;     
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* keeps full product visible */
  border-radius: 10px;
}
.product-content {
  flex: 1;
}
.product-content h1 {
  font-family: 'Georgia', serif;
  font-size: 28px;
  color: #f57c00;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
    margin-bottom: 12px;
}
.product-content h3 {
  color: #fff;
  margin: 20px 0 10px;
  font-size: 28px;
  font-weight: 600;
}
.product-content ul {
  margin-left: 18px;
  color: #ddd;
  line-height: 1.8;
}
.price-list{
  display:grid;
  grid-template-columns:auto auto;
  row-gap:6px;
  column-gap:30px;
  list-style:disc;
  margin-left:18px;
  width:fit-content;   /* IMPORTANT */
}
.price-list li {
  color: #f57c00;
  font-weight: 600;
}
/* PRODUCT ATTRIBUTES */
.product-attributes {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.product-attributes li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 16px;
  color: #ffffff;
}
.product-attributes li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f57c00;
}
/* SMALL ATTRIBUTES (GRID) */
.product-attributes.small li {
  font-size: 13px;
  color: #ddd;
}

.product-pack{
  width:320px;
  height:400px;               /* same height as product-image */
  background: rgba(200,200,200,0.18);
  border:1px solid rgba(245,124,0,0.25);
  border-radius:18px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}
/* pack image */
.product-pack img{
  width:100%;
  max-width:260px;
  height:auto;
  object-fit:contain;
}
/* Responsive */
@media (max-width: 768px) {
  .product-content h1 {
    white-space: normal;
  }
  .product-detail {
    flex-direction: column;
    text-align: center;
  }
  .product-content ul {
    list-style: none;
    padding: 0;
  }
}
.product-detail-section + .products-section {
  padding-top: 0 !important;
}
/* Desktop - Single Line */
@media (min-width: 769px) {
  .product-content h1 {
    white-space: nowrap;
  }
}
/* ================= GALLERY ================= */
.gallery-section {
  background: #0b0b0b;
}
.gallery-title {
  font-family: 'Georgia', serif;
  color: #f57c00;
  text-align: center;
}
/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(245,124,0,0.35);
  box-shadow: 0 0 0 transparent;
  transition: all 0.4s ease;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.5s ease;
}
/* HOVER */
.gallery-item:hover {
  box-shadow: 0 0 18px rgba(245,124,0,0.6);
}
.gallery-item:hover img {
  transform: scale(1.1);
}


/* ================= GALLERY REVEAL EFFECT ================= */
.gallery-item.reveal {
  opacity: 0;
  transform:
    translateY(80px)
    scale(0.92)
    rotateX(8deg);
  filter: blur(3px);
  transition:
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease,
    filter 0.5s ease,
    box-shadow 0.6s ease;
  will-change: transform, opacity;
}
/* ACTIVE STATE */
.gallery-item.reveal.active {
  opacity: 1;
  transform:
    translateY(0)
    scale(1)
    rotateX(0deg);
  filter: blur(0);
  box-shadow:
    0 0 0 rgba(245,124,0,0);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;   /* IMPORTANT */
}
.gallery-item::after {
  content: "👁";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  font-size: 42px;
  color: #f57c00; /* your theme orange */
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-item:hover::before {
  opacity: 1;
}
/* Show on hover */
.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@keyframes glowFlash {
  0%   { opacity: 0; }
  40%  { opacity: 1; }
  100% { opacity: 0; }
}
/* STAGGER EFFECT */
.gallery-item.reveal:nth-child(1) { transition-delay: 0.05s; }
.gallery-item.reveal:nth-child(2) { transition-delay: 0.12s; }
.gallery-item.reveal:nth-child(3) { transition-delay: 0.18s; }
.gallery-item.reveal:nth-child(4) { transition-delay: 0.25s; }
.gallery-item.reveal:nth-child(5) { transition-delay: 0.32s; }
.gallery-item.reveal:nth-child(6) { transition-delay: 0.38s; }
.gallery-item.reveal:nth-child(7) { transition-delay: 0.45s; }
.gallery-item.reveal:nth-child(8) { transition-delay: 0.52s; }
.gallery-item.reveal:nth-child(9) { transition-delay: 0.58s; }

/* ================= LIGHTBOX ================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox-image-box {
  width: 1000px;
  height: 720px;
  background: #000;
  border-radius: 12px;
  border: 2px solid #f57c00;
  box-shadow: 0 0 35px rgba(245,124,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.55);
}
.lightbox-image-box.zoom {
  animation: lightboxZoom 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(0.55);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.lightbox-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* CONTROLS */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 42px;
  color: #f57c00;
  cursor: pointer;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #f57c00;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.reveal.active {
  transform: translateY(0);
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-item.reveal {
    transform: translateY(40px) scale(0.96);
  }
  .lightbox-image-box {
    width: 90%;          
    max-width: 360px;    
    height: 240px;       
  }
  .lightbox-prev,
  .lightbox-next,
  .lightbox-close {
    z-index: 10001;
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
  .lightbox-close {
    top: 10px;
    right: 12px;
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 220px;
  }
  .lightbox-prev,
  .lightbox-next {
    font-size: 36px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover {
    box-shadow: 0 0 18px rgba(245,124,0,0.6);
    transform: translateY(-8px);
  }
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  .product-card:hover {
    transform: translateY(-8px);
  }

}
@media (hover: none) and (pointer: coarse) {
  .gallery-item:active,
  .gallery-item:focus-visible {
    box-shadow: 0 0 18px rgba(245,124,0,0.6);
    transform: translateY(-6px);
  }
  .gallery-item:active img,
  .gallery-item:focus-visible img {
    transform: scale(1.08);
  }
  .product-card:active,
  .product-card:focus-visible {
    transform: translateY(-6px);
  }
  .product-card:active .product-extra,
  .product-card:active .product-btn {
    opacity: 1;
    max-height: 200px;
  }
}
/* ================= FAQ SECTION ================= */
.faq-section {
  background: #0b0b0b;
}
.faq-title {
  font-family: 'Georgia', serif;
  color: #f57c00;
  text-align: center;
  margin-bottom: 12px;
}
.faq-subtitle {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center;
  white-space: nowrap;   
  line-height: 1.7;
  color: #cfcfcf;
}
.faq-list {
  max-width: 1100px;
  margin: auto;
}
.faq-item {
  background: linear-gradient(160deg, #111, #0b0b0b);
  border: 1px solid rgba(245,124,0,0.18);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}
.faq-question {
  background: rgba(200, 200, 200, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.faq-icon {
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #f57c00;
  top: 50%;
}
/* ▼ default */
.faq-icon::before {
  left: 4px;
  transform: rotate(45deg);
}
.faq-icon::after {
  right: 4px;
  transform: rotate(-45deg);
}
/* OPEN STATE: ▲ */
.faq-item.open .faq-icon::before {
  transform: rotate(-45deg);
}
.faq-item.open .faq-icon::after {
  transform: rotate(45deg);
}
/* ANSWER — HIDDEN INITIALLY */
.faq-answer {
  background: rgba(200, 200, 200, 0.18);
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: #e0e0e0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
/* SHOW ANSWER */
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}
/* ================= FAQ REVEAL ================= */
.faq-item.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-item.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.faq-cta {
  margin-top: 100px;
  text-align: center;
}
.faq-cta h3 {
  color: #fff;
  margin-bottom: 10px;
}
.faq-cta p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}
.faq-item::before {
  content: counter(faq);
  counter-increment: faq;
  position: absolute;
  left: -42px;
  top: 22px;
  font-size: 22px;
  color: rgba(245,124,0,0.5);
}
.faq-list {
  counter-reset: faq;
}
/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .faq-title {
    font-size: 40px;
  }
  .faq-subtitle {
    font-size: 17px;
    margin-bottom: 60px;
	white-space: normal;
  }
  .faq-question {
    font-size: 17px;
    padding: 20px 24px;
  }
  .faq-answer {
    font-size: 15.5px;
  }
  .faq-item::before {
    left: -34px;
    font-size: 20px;
  }
}
/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .faq-section {
    padding: 90px 0;
  }
  .faq-title {
    font-size: 32px;
  }
  .faq-subtitle {
    font-size: 15px;
    margin-bottom: 45px;
    padding: 0 10px;
    white-space: normal;     
    line-height: 1.6;
  }
  .faq-list {
    padding: 0 6px;
  }
  .faq-question {
    font-size: 16px;
    padding: 18px 18px;
    gap: 14px;
  }
  .faq-icon {
    width: 20px;
    height: 20px;
  }
  .faq-answer {
    font-size: 15px;
    padding: 0 18px;
  }
  .faq-item.open .faq-answer {
    padding: 0 18px 20px;
  }
  /* Hide numbering on mobile (cleaner) */
  .faq-item::before {
    display: none;
  }
  .faq-cta {
    margin-top: 70px;
    padding: 0 12px;
  }
  .faq-cta h3 {
    font-size: 22px;
  }
  .faq-cta p {
    font-size: 15px;
  }
   .faq-icon::before {
    left: 2px;              /* move left arm outward */
    transform: rotate(45deg);
  }
  .faq-icon::after {
    right: 2px;             /* move right arm outward */
    transform: rotate(-45deg);
  }
  /* OPEN STATE ▲ */
  .faq-item.open .faq-icon::before {
    transform: rotate(-45deg);
  }
  .faq-item.open .faq-icon::after {
    transform: rotate(45deg);
  }
}
/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-subtitle {
    font-size: 14px;
	white-space: normal;
  }
  .faq-question {
    font-size: 15px;
    padding: 16px;
  }
  .faq-answer {
    font-size: 14px;
    line-height: 1.7;
  }
  .faq-icon {
    width: 18px;
    height: 18px;
  }
}
/* Extra Small Phones (<= 360px) */
@media (max-width: 360px) {
  .faq-title {
    font-size: 26px;
  }
  .faq-question {
    font-size: 14.5px;
  }
  .faq-answer {
    font-size: 13.5px;
  }
}
/* ================= FLOATING INDICATORS ================= */
.floating-indicators {
  position: fixed;
  bottom: 24px;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 9999;
}
/* COMMON STYLE */
.indicator {
  pointer-events: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(245,124,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f57c00;
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.35s ease;
}
/* SHOW AFTER SCROLL */
.floating-indicators.show .indicator {
  transform: translateY(0);
  opacity: 1;
}
/* POSITIONS */
.home-indicator { left: 24px; }
.top-indicator  { right: 24px; }
/* ================= HOME ICON ================= */
.home-icon {
  position: relative;
  width: 22px;
  height: 16px;
  background: #f57c00;
  border-radius: 3px;
}
/* Roof */
.home-icon::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 1px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 9px solid #f57c00;
}
/* Door */
.home-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  width: 6px;
  height: 8px;
  background: #0b0b0b;
  border-radius: 1px;
}
.indicator:hover {
  box-shadow:
    0 0 0 4px rgba(245,124,0,0.25),
    0 0 22px rgba(245,124,0,0.7);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .home-icon {
    width: 18px;
    height: 14px;
  }
  .home-icon::before {
    border-left-width: 8px;
    border-right-width: 8px;
    border-bottom-width: 8px;
    left: 1px;
  }
  .home-icon::after {
    left: 6px;
    width: 5px;
    height: 7px;
  }
}
/* ================= 1101px – 1280px FIX ================= */
@media (max-width: 1280px) and (min-width: 1101px) {
  /* ---------- HEADER ---------- */
  .topbar .container,
  .main-header .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .brand-name {
    font-size: 26px;
  }
  .nav ul li {
    margin-left: 20px;
  }
  .nav ul li a {
    font-size: 18px;
  }
  /* ---------- HERO ---------- */
  .home-title {
    font-size: 44px;
  }
  .home-description {
    font-size: 18px;
  }
  .home-hero {
    padding-top: 90px;   /* 🔥 added */
  } 
  /* ---------- SECTION PADDING REDUCE ---------- */
.about-section,
.products-section,
.team-section,
.faq-section,
.gallery-section,
.map-section,
.final-cta-section {
  padding: 40px 0 80px;
}
  /* ---------- BIG TITLES ---------- */
  .products-title,
  .about-title,
  .gallery-title,
  .contact-title,
  .map-title,
  .final-cta-title {
    font-size: 40px;
  }
  /* ---------- PRODUCT DETAIL ---------- */
  .product-detail {
    gap: 40px;
  }
  .product-content h1 {
    font-size: 36px;
  }
/* ---------- LIGHTBOX ADJUST ---------- */
.lightbox-image-box {
  width: 820px;
  height: 560px;
}
.lightbox-prev,
.lightbox-next {
  font-size: 42px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close {
  font-size: 36px;
  top: 55px;
  right: 80px;
}
}

/* ================= ENQUIRY POPUP ================= */

.enquiry-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
backdrop-filter:blur(4px);
}

/* POPUP BOX */
.enquiry-box{
width:520px;
max-width:90%;
background:rgba(200,200,200,0.12);
backdrop-filter:blur(6px);
border:1px solid rgba(245,124,0,0.25);
border-radius:14px;
padding:30px;
box-shadow:0 20px 60px rgba(0,0,0,0.6);
animation:popupFade 0.35s ease;
}

/* TITLE */
.enquiry-box h2{
font-family:'Georgia',serif;
color:#f57c00;
margin-bottom:18px;
font-size:26px;
}

/* CLOSE BUTTON */
.close-modal{
position:absolute;
top:18px;
right:22px;
font-size:26px;
color:#fff;
cursor:pointer;
transition:0.25s;
}

.close-modal:hover{
color:#f57c00;
transform:scale(1.15);
}

/* TEXTAREA */
.enquiry-box textarea{
width:100%;
padding:14px;
background:#0b0b0b;
border:1px solid rgba(255,255,255,0.15);
border-radius:6px;
color:#fff;
font-size:15px;
margin-bottom:16px;
resize:none;
}

.enquiry-box textarea:focus{
outline:none;
border-color:#f57c00;
}

/* INPUT */
.enquiry-box input{
width:100%;
padding:12px 14px;
background:#0b0b0b;
border:1px solid rgba(255,255,255,0.15);
border-radius:6px;
color:#fff;
font-size:15px;
margin-bottom:18px;
}

.enquiry-box input:focus{
outline:none;
border-color:#f57c00;
}

/* BUTTON */
.enquiry-box button{
background:#f57c00;
border:none;
padding:12px 28px;
color:#fff;
font-weight:600;
font-size:15px;
border-radius:5px;
cursor:pointer;
transition:0.3s;
}

.enquiry-box button:hover{
background:#e06900;
}

/* STATUS MESSAGE */
#enquiryStatus{
margin-top:14px;
font-size:15px;
}

/* POPUP ANIMATION */
@keyframes popupFade{
from{
opacity:0;
transform:scale(0.85);
}
to{
opacity:1;
transform:scale(1);
}
}

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

.enquiry-box{
padding:24px;
}

.enquiry-box h2{
font-size:22px;
}

}