/* ======================
   Top Bar Styles
   ====================== */

   .top-bar {
    background: linear-gradient(135deg, #d84e35 0%, #b13737 100%);
    padding: 12px 15px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
    color: #ffffff;
  }
  
  .top-bar .container {
    padding: 0 15px;
  }
  
  .top-bar-contact {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .top-bar-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  
  .top-bar-link:hover {
    color: #fff;
    transform: translateY(-1px);
  }
  
  .icon-circle {
    background: linear-gradient(360deg, #ffffff 0%, #e9e9e9 100%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .icon-circle i {
    color: #d84e35;
    font-size: 16px;
  }
  
  .top-bar-link:hover .icon-circle {
    transform: scale(1.1) rotate(-8deg);
  }
  
  .contact-text {
    display: inline-block;
    vertical-align: middle;
  }
  
  /* Social Links */
  .social-links {
    display: flex;
    gap: 25px;
    align-items: center;
  }
  
  .social-links a {
    color: #d9d9da;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    position: relative;
  }
  
  .social-links a:hover {
    color: #fff;
    transform: translateY(-2px);
  }
  
  .social-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
  }
  
  .social-links a:hover::after {
    width: 100%;
  }
  
  /* Responsive Styles */
  @media (max-width: 767px) {
    .navbar-brand img {
      height: 35px !important; 
    }
    .top-bar-contact {
      gap: 15px;
      justify-content: space-between;
    }
    .main-header {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .top-bar-link:not(.email) .contact-text {
      display: inline-block !important;
      font-size: 0.8rem;
      margin-left: 8px;
    }
    
    .top-bar-link.email {
      display: none;
    }
    
    .icon-circle {
      width: 28px;
      height: 28px;
    }
    
    .social-links {
      gap: 12px;
    }
    
    .social-links a {
      font-size: 16px;
    }
    
   
    .enquiry.desktop-only {
      display: none !important;
    }
  }
  
  @media (min-width: 768px) {
    .social-links {
      gap: 30px;
      padding-right: 15px;
    }
  }
  
  /* Brand- Hover Colors */
  .social-links a[aria-label="Facebook"]:hover { color: #8dbeff; }
  .social-links a[aria-label="Instagram"]:hover { color: #e4405f; }
  .social-links a[aria-label="YouTube"]:hover { color: #ff0000; }
  .social-links a[aria-label="WhatsApp"]:hover { color: #25d366; }
  
  /* Main Header Styles */
  .main-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 15px;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .navbar-brand img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
  }
  
  .nav-item {
    position: relative;
    margin: 0 15px;
  }
  
  .nav-link {
    color: #333 !important;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    color: rgb(245, 79, 2) !important;
    transform: translateY(-2px);
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    visibility: hidden;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  
  .dropdown-item {
    transition: all 0.2s ease;
  }
  
  .dropdown-item:hover {
    background: linear-gradient(135deg, #d84e35 0%, #b13737 100%);
    color: #fff !important;
    transform: translateX(5px);
  }
  
  .offcanvas {
    border-radius: 45px 0 0 45px;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.75rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  /* ======================
   Enquiry Now Button
   ====================== */

   .enquiry {
    /* Basic Button Styles */
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid rgba(216, 78, 53, 0.3); 
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    
    /* Text Styles */
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    
    /* Background & Effects */
    background: linear-gradient(135deg, #d84e35 0%, #b13737 100%); 
    box-shadow: 0 4px 15px rgba(216, 78, 53, 0.25); 
    
    /* Transitions */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animation */
    animation: button-pulse 3s ease-in-out infinite;
  }
  
  @keyframes button-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
  }
  
  .enquiry:hover {
    /* Hover States */
    background: linear-gradient(135deg, #c0452e 0%, #9b2b2b 100%);
    box-shadow: 0 6px 20px rgba(216, 78, 53, 0.35); 
    transform: translateY(-2px) scale(1.02);
  }
  
  .enquiry::before {
    /* Shine Effect Layer */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.15) 50%,
      rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.75s ease;
  }
  
  .enquiry:hover::before {
    left: 200%;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .enquiry {
      padding: 10px 25px;
      font-size: 0.9rem;
    }
  }
  
  /* Body Background */
  body {
    background: #ffffff !important;
  }