@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ==========================================================================
   Premium Design System & Variables
   ========================================================================== */
:root {
  /* Color Palette - Premium Technology theme */
  --primary: #3884ff;         /* Vibrant Electric Blue */
  --primary-hover: #1e6df2;
  --secondary: #ff8c1a;       /* Energy Orange */
  --secondary-hover: #e0720a;
  --success: #10b981;         /* Emerald Green */
  --dark-bg: #0f172a;         /* Deep Slate Black */
  --card-bg: #ffffff;
  --body-bg: #f8fafc;         /* Pure Light Grey */
  --border-color: rgba(15, 23, 42, 0.08);
  --border-focus: rgba(56, 132, 255, 0.4);
  
  /* Text Colors */
  --text-main: #1e293b;       /* Dark grey/blue for reading */
  --text-muted: #64748b;      /* Slate grey */
  --text-white: #ffffff;
  
  /* Spacing */
  --container-max-width: 1280px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 25px rgba(56, 132, 255, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Animation */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Global Reset & Accessibility
   ========================================================================== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--body-bg);
  color: var(--text-main);
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-bg);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}

/* Accessible focus outline */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Skip links for screen readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ==========================================================================
   Premium Buttons & Forms
   ========================================================================== */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none !important;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.btn-premium::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-premium:active::after {
  width: 300px;
  height: 300px;
}

.btn-premium-primary {
  background: var(--primary);
  color: var(--text-white) !important;
}

.btn-premium-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 132, 255, 0.3);
}

.btn-premium-secondary {
  background: var(--secondary);
  color: var(--text-white) !important;
}

.btn-premium-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.3);
}

.btn-premium-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
}

.btn-premium-outline:hover {
  background: var(--primary);
  color: var(--text-white) !important;
  transform: translateY(-2px);
}

.btn-premium-success {
  background: var(--success);
  color: var(--text-white) !important;
}

.btn-premium-success:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Form Styles */
.form-group-premium {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group-premium label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control-premium {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.form-control-premium:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--border-focus);
}

textarea.form-control-premium {
  min-height: 120px;
  resize: vertical;
}

/* ==========================================================================
   Header Redesign (Top bar & Nav bar)
   ========================================================================== */
.top-contact-bar {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.top-contact-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-contact-bar .contact-info-list {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-contact-bar .contact-info-list li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.top-contact-bar .contact-info-list li a:hover {
  color: var(--primary);
}

.top-contact-bar .working-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Main Premium Navigation Header */
header.premium-nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
}

header.premium-nav-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

header.premium-nav-header .navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

header.premium-nav-header .logo-area img {
  max-height: 50px;
  width: auto;
  transition: transform var(--transition-normal);
}

header.premium-nav-header .logo-area img:hover {
  transform: scale(1.02);
}

header.premium-nav-header .nav-links-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

header.premium-nav-header .nav-links-list a {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none !important;
  text-transform: capitalize;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

header.premium-nav-header .nav-links-list a:hover {
  color: var(--primary);
}

/* Nav bottom line animation */
header.premium-nav-header .nav-links-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-normal);
}

header.premium-nav-header .nav-links-list a:hover::after,
header.premium-nav-header .nav-links-list li.active a::after {
  width: 100%;
}

header.premium-nav-header .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Burger menu icon for mobile */
header.premium-nav-header .menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

header.premium-nav-header .menu-toggle-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  margin-bottom: 5px;
  transition: all var(--transition-normal);
}

header.premium-nav-header .menu-toggle-btn span:last-child {
  margin-bottom: 0;
}

/* Active hamburger icon */
header.premium-nav-header .menu-toggle-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

header.premium-nav-header .menu-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

header.premium-nav-header .menu-toggle-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Nav Drawer
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  box-shadow: var(--shadow-lg);
  padding: 8rem 2.5rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-slow);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-drawer .mobile-links-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.mobile-nav-drawer .mobile-links-list a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  display: block;
}

.mobile-nav-drawer .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Mobile Nav Overlay backdrop */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Hero & Slider Overhaul
   ========================================================================== */
#slider {
  position: relative;
  background: var(--dark-bg);
}

.flexslider {
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.flexslider .slides img {
  height: 500px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

@media (max-width: 767px) {
  #slider,
  .flexslider,
  .flexslider .slides,
  .flexslider .slides li {
    height: auto !important;
    max-height: none !important;
  }
  .flexslider .slides img {
    height: auto !important;
    width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
  }
}

/* Modern overlay gradient on slides */
#slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.2) 100%);
  pointer-events: none;
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
.section-premium {
  padding: var(--spacing-lg) 0;
}

.section-premium:nth-child(even) {
  background-color: var(--body-bg);
}

.section-premium:nth-child(odd) {
  background-color: #ffffff;
}

.heading-section-premium {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  position: relative;
}

.heading-section-premium h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.heading-section-premium p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.heading-section-premium .decor-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 1.5rem auto 0 auto;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Premium Cards (Products & Services)
   ========================================================================== */
.card-premium {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-md);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(56, 132, 255, 0.2);
}

.card-premium:hover::before {
  transform: scaleX(1);
}

.card-premium-image-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-premium-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card-premium:hover .card-premium-image-wrapper img {
  transform: scale(1.06);
}

.card-premium-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark-bg);
}

.card-premium-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-premium-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

.card-premium-buttons-row {
  display: flex;
  gap: 0.5rem;
}

.card-premium-buttons-row .btn-premium {
  flex: 1;
  padding: 0.6rem 0.8rem;
  font-size: 0.82rem;
}

/* Latest Products Overlay Grid Override */
#latest-blog .row {
  display: flex !important;
  flex-wrap: wrap !important;
}

#latest-blog .row::before,
#latest-blog .row::after {
  display: none !important;
}

#latest-blog .blog-post {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background: white;
  margin-bottom: 30px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

#latest-blog .blog-post:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08) !important;
}

#latest-blog .blog-thumb {
  border: none;
  overflow: hidden;
  position: relative;
}

#latest-blog .blog-thumb img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#latest-blog .blog-post:hover .blog-thumb img {
  transform: scale(1.04);
}

#latest-blog .blog-content {
  position: static;
  background: white;
  color: var(--text-main);
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#latest-blog .content-show h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 0.5rem;
}

#latest-blog .content-hide {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  margin-top: 0.8rem;
}

#latest-blog .content-hide p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

#latest-blog .product-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

/* ==========================================================================
   Our Team Section Redesign
   ========================================================================== */
.team-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card-premium {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.team-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 132, 255, 0.2);
}

.team-card-premium-img-wrapper {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem auto;
  overflow: hidden;
  border: 4px solid var(--border-color);
  transition: border-color var(--transition-fast);
}

.team-card-premium:hover .team-card-premium-img-wrapper {
  border-color: var(--primary);
}

.team-card-premium-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card-premium:hover .team-card-premium-img-wrapper img {
  transform: scale(1.08);
}

.team-card-premium-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--dark-bg);
}

.team-card-premium-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(56, 132, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
}

.team-card-premium-spec {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Testimonial Section Redesign
   ========================================================================== */
.testimonails-slider-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonails-slider-wrapper::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(56, 132, 255, 0.08);
  line-height: 1;
}

.testimonails-content p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  color: var(--text-main) !important;
  text-align: center;
  font-style: normal !important;
  margin-bottom: 1.5rem;
}

.testimonails-content h6 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-style: normal !important;
}

/* ==========================================================================
   Footer Overhaul
   ========================================================================== */
footer.premium-footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem 0;
  margin-top: 5rem;
  border-top: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

footer.premium-footer .footer-title {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.8rem;
}

footer.premium-footer .footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

footer.premium-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

footer.premium-footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
  text-decoration: none;
}

footer.premium-footer a:hover {
  color: var(--primary);
}

footer.premium-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer.premium-footer ul li {
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

footer.premium-footer ul li i {
  color: var(--primary);
}

footer.premium-footer .footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

footer.premium-footer .footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  color: white;
  transition: all var(--transition-fast);
}

footer.premium-footer .footer-social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

footer.premium-footer .bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  text-align: center;
}

footer.premium-footer .bottom-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Floating Action Buttons (Call, WhatsApp, Email, Scroll To Top)
   ========================================================================== */
.floating-widget-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 9999;
}

@media (max-width: 767px) {
  .floating-widget-container {
    bottom: 1.2rem;
    right: 1.2rem;
    gap: 0.6rem;
  }
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none !important;
  position: relative;
}

.floating-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.floating-btn-call {
  background: var(--primary);
}
.floating-btn-call:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px rgba(56, 132, 255, 0.4);
}

.floating-btn-whatsapp {
  background: #25d366;
}
.floating-btn-whatsapp:hover {
  background: #128c7e;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.floating-btn-email {
  background: var(--secondary);
}
.floating-btn-email:hover {
  background: var(--secondary-hover);
  box-shadow: 0 0 20px rgba(255, 140, 26, 0.4);
}

.floating-btn-top {
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.floating-btn-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.floating-btn-top:hover {
  background: #1e293b;
}

/* Pulsing micro-animations */
.floating-btn-whatsapp::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  border: 2px solid #25d366;
  top: 0;
  left: 0;
  box-sizing: border-box;
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-4px);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================================================
   Animations & Scroll Reveal
   ========================================================================== */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsiveness & Layout Fixes
   ========================================================================== */
@media (max-width: 1024px) {
  .team-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  header.premium-nav-header .nav-links-list,
  header.premium-nav-header .nav-actions .btn-premium {
    display: none;
  }
  
  header.premium-nav-header .menu-toggle-btn {
    display: block;
  }
  
  .top-contact-bar .working-hours {
    display: none;
  }
  
  .heading-section-premium h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .top-contact-bar {
    display: none;
  }
  
  footer.premium-footer .bottom-footer .container {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonails-slider-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .team-grid-premium {
    grid-template-columns: 1fr;
  }
  
  .section-premium {
    padding: 3rem 0;
  }
}

/* ==========================================================================
   FAQ Accordion Premium Styles
   ========================================================================== */
.faq-accordion-premium {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.faq-item-premium {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item-premium:hover {
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: var(--primary);
}

.faq-trigger-premium {
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-bg);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-trigger-premium:focus {
  outline: none;
}

.faq-trigger-premium i {
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.faq-item-premium.active .faq-trigger-premium i {
  transform: rotate(45deg);
}

.faq-panel-premium {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 2rem;
}

.faq-item-premium.active .faq-panel-premium {
  max-height: 400px;
  padding: 0 2rem 2rem 2rem;
}

.faq-panel-premium p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ==========================================================================
   Form Control Premium Styles
   ========================================================================== */
.form-control-premium {
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  background-color: var(--body-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-control-premium:focus {
  border-color: var(--primary);
  background-color: var(--card-bg);
  box-shadow: 0 0 0 3px var(--border-focus);
  outline: none;
}

/* ==========================================================================
   Blog & Articles Layout
   ========================================================================== */
.blog-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .blog-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-grid-premium {
    grid-template-columns: 1fr;
  }
}

.blog-card-premium {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.blog-card-img-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card-premium:hover .blog-card-img-wrapper img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  gap: 1rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.blog-card-footer {
  margin-top: auto;
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */
.breadcrumb-premium {
  padding: 0.8rem 0;
  margin-bottom: 2rem;
  list-style: none;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.92rem;
}
.breadcrumb-premium li + li::before {
  content: "/";
  color: var(--text-muted);
  padding: 0 0.5rem;
}
.breadcrumb-premium a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-premium li.active {
  color: var(--text-muted);
}
.breadcrumb-premium a:hover {
  text-decoration: underline;
}

/* Ensure the services content section is stable, always visible, and has no animations */
#services {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
  display: block !important;
}

/* ==========================================================================
   Contact Page Modern Redesign Styles
   ========================================================================== */
.contact-banner {
  background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.65)), url('../images/bg-image.jpg') no-repeat center center !important;
  background-size: cover !important;
  padding: 80px 0 !important;
  text-align: center !important;
  color: #fff !important;
}

@media (max-width: 767px) {
  .contact-banner {
    background-position: 85% center !important; /* ensures the mobile phone held in hand is visible on mobile screens */
    padding: 60px 0 !important;
  }
}

.contact-card-premium {
  background: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
  padding: 40px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-premium:hover {
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08) !important;
}

.contact-field-group {
  margin-bottom: 24px;
}

.contact-field-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-bg);
  margin-bottom: 8px;
  text-align: left;
}

.contact-input-premium {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark-bg);
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.contact-input-premium:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 132, 255, 0.18), inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.contact-input-premium::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Premium Book Now Button */
.btn-book-now {
  background: linear-gradient(135deg, var(--primary) 0%, #1e6df2 100%);
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(56, 132, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 132, 255, 0.45);
  background: linear-gradient(135deg, #1e6df2 0%, #0d5ce3 100%);
}

.btn-book-now:active {
  transform: translateY(0);
}

.btn-book-now .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: btn-spin 0.8s linear infinite;
  margin-right: 4px;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.btn-book-now.loading {
  pointer-events: none;
  opacity: 0.9;
}

.btn-book-now.loading .btn-spinner {
  display: inline-block;
}

@media (max-width: 767px) {
  .contact-card-premium {
    padding: 24px 20px !important;
  }
  .btn-book-now {
    width: 100%;
  }
}

/* See More Link Styles */
.see-more-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.see-more-link:hover {
  color: var(--primary-hover) !important;
  text-decoration: underline !important;
}


