@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
  font-size: 13px; 
}

@media (max-width: 1200px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 10px;
  }
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

/* Dark theme background image */
[data-theme="dark"] body {
  background-image: url('../assets/FreentBG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Light theme clean background */
[data-theme="light"] body {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  background-attachment: fixed;
}

#background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #191919;
  border-bottom: 1px solid #FFD700;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 1rem 2rem;
  background-color: #191919;
  border-bottom: 1px solid #FFD700;
}

/* Hide hamburger by default; only show on small screens (see media query) */
.hamburger-btn {
  display: none;
}


/* ============ MOBILE RESPONSIVE - TABLET (768px) ============ */
@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    height: 50px;
  }

  /* Show hamburger on mobile */
  .hamburger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1200;
    border-radius: 8px;
    transition: all 0.3s ease;
    order: 3;
  }

  .hamburger-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
  }

  /* Nav wrapper becomes a dropdown panel */
  .nav-wrapper {
    display: none !important;
    width: 100%;
    order: 10;
    flex-basis: 100%;
  }

  .site-header.nav-open .nav-wrapper {
    display: block !important;
  }

  .main-nav {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 !important;
    background: rgba(25, 25, 25, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    margin-top: 0.5rem;
    list-style: none;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-nav li:last-child {
    border-bottom: none;
  }

  .main-nav li a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .main-nav li a:hover {
    background: rgba(255, 215, 0, 0.1);
    padding-left: 1.5rem;
  }

  /* Search in mobile nav */
  .search-wrapper {
    width: 100%;
    padding: 0.5rem 1rem;
  }

  .search-form {
    width: 100%;
    max-width: 100%;
  }

  .search-input-wrapper {
    width: 100%;
  }

  /* Services dropdown on mobile */
  .services-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    margin: 0.25rem 0.5rem;
    padding: 0.25rem 0;
  }

  .services-dropdown .dropdown-menu li a {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Header actions on mobile  */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    order: 2;
    margin-left: auto;
  }

  .notification-bell {
    margin-right: 0;
  }

  .notification-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .login-btn, .account-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }

  .user-indicator {
    font-size: 0.85rem;
    margin-right: 0;
  }

  /* Profile button compact on mobile */
  .profile-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  .profile-btn #usernameDisplay {
    display: none;
  }

  .profile-btn i:last-child {
    display: none;
  }

  /* Profile dropdown on mobile */
  .profile-dropdown {
    right: 0;
    min-width: 180px;
  }
}

/* Theme adaptivity for hamburger button */
.hamburger-btn i { pointer-events: none; }
[data-theme="light"] .hamburger-btn {
  color: #111827;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

[data-theme="dark"] .hamburger-btn {
  color: #ffffff;
  background: rgba(0,0,0,0.45);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============ MOBILE RESPONSIVE - PHONE (480px) ============ */
@media (max-width: 480px) {
  .site-header {
    padding: 0.5rem 0.75rem;
  }

  .logo img {
    height: 40px;
  }

  .hamburger-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .main-nav li a {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .login-btn, .account-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .notification-btn {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .profile-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
  }

  /* Profile dropdown on phone */
  .profile-dropdown {
    right: -0.5rem;
    min-width: 170px;
    font-size: 0.9rem;
  }

  .profile-dropdown-item {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  /* Allow services dropdown to open via tap */
  .services-dropdown:focus-within .dropdown-menu,
  .services-dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
/*
#intro-screen {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(255, 213, 0);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  font-weight: 900;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  position: relative;
  z-index: 1;
}

#intro-screen h1 {
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

#intro-screen button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.095);
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
*/
button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

nav {
  flex-grow: 1;
  margin-left: 2rem;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

nav ul li a:hover {
  background-color: #FFD700;
  color: #000;
}

section {
  padding: 2rem;
  align-items: center;
}

.fade-out {
  animation: fadeOut 0.6s forwards;
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

.login-btn {
  
  background-color: #FFD700;
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.login-btn:hover {
  background-color: #fff;
}
.header-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo img {
  height: 90px;
  max-width: 100%;
}

.main-nav {
  display: flex;
  flex-wrap: wrap; 
  gap: 2rem; 
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0.2rem 5rem;
  margin: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

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

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  z-index: 10;
  width: max-content;
}

.dropdown-menu li {
  margin-bottom: 0.5rem;
}

.dropdown-menu li a {
  color: #FFD700;
  font-weight: 500;
  white-space: nowrap;
}

.search-form {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  padding: 0.4rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
}

@media (max-width: 480px) {
  .search-form {
    max-width: 100%;
  }
}

.search-input-wrapper {
  position: relative;
  flex: 1;
}

.search-input-wrapper input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border-radius: 30px;
  border: none;
  font-size: 0.9rem;
  background-color: transparent;
  outline: none;
}

.search-input-wrapper input:focus {
  outline: none;
  box-shadow: none;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  pointer-events: none;
}

.search-wrapper.active #search-field {
  display: block;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.nav-wrapper {
  flex: 1; 
  display: flex;
  justify-content: center;
}

.cta {
  background-color: #FFD700;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background-color: rgba(0, 0, 0, 0.4);

  color: #fff;
  text-align: center;
  padding: 2rem; 
  padding-bottom: 2rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: -5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.2s ease-out 0.3s forwards; /* Added forwards to keep final state */
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem; 
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  color: #FFD700;
  text-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-subtext {
  font-size: 1.5rem; 
  font-weight: 500;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 1px 2px rgba(0, 0, 0, 0.7);
}

.get-started {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
  }
}

.get-started:hover {
  transform: scale(1.05);
}

/* Mobile responsive styles for hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtext {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .get-started {
    width: 100%;
    text-align: center;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
  }
}

.advantages {
  display: flex;
  justify-content: center;
  gap: 4rem; 
  margin-top: -12rem; 
  padding: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 1s;
}

@media (max-width: 768px) {
  .advantages {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFD700;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  max-width: 140px;
}

@media (max-width: 480px) {
  .advantage-item img {
    width: 50px;
  }

  .advantages {
    padding: 1rem;
  }
}

.advantage-item img {
  width: 70px;
  height: auto;
  margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
  .advantages {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.cta {
  background-color: #FFD700;
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtext {
    font-size: 1.2rem;
  }
}

.scroll-teaser {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scroll-teaser.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container for services content */
.teaser-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.teaser-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #FFD700;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Light mode title */
[data-theme="light"] .teaser-title {
  color: #f97316;
  text-shadow: none;
}

/* Rotating Services Text */
.rotating-services {
  font-size: 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.service-intro,
.service-tagline {
  color: #fff;
  font-weight: 400;
}

.service-highlight-container {
  position: relative;
  min-width: 300px;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-highlight {
  font-weight: 800;
  color: #FFD700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  border: 2px solid #FFD700;
  display: inline-block;
  animation: fadeInOut 3s ease-in-out infinite;
  position: absolute;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
    transform: translateY(20px);
  }
  10%, 90% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Grid - 5 columns layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: #FFD700;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 215, 0, 0.5);
  background: rgba(26, 26, 26, 0.8);
}

.service-card i {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 0.75rem;
}

.service-card h4 {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.service-card p {
  color: #ddd;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Light mode service cards */
[data-theme="light"] .service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(249, 115, 22, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .service-card:hover {
  border-color: #f97316;
  box-shadow: 0 16px 48px rgba(249, 115, 22, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .service-card i {
  color: #f97316;
}

[data-theme="light"] .service-card h4 {
  color: #f97316;
}

[data-theme="light"] .service-card p {
  color: #6b7280;
}

.samples {
  padding: 4rem 2rem; 
  color: #fff;
  text-align: center;
}

.samples h2,
.samples h3 {
  font-size: 2rem; 
  margin-bottom: 1.5rem;
}

.sample-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  
  gap: 1.5rem; 
}

@media (max-width: 768px) {
  .sample-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sample-gallery {
    grid-template-columns: 1fr;
  }
}

/* Sample item styles moved to carousel */

.sample-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.view-services-wrapper {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.view-services {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.view-services:hover {
  transform: scale(1.05);
}

.site-footer {
  background-color: #111;
  color: #fff;
  padding: 2rem; 
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem; 
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }
}

.footer-brand img {
  width: 80px;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-weight: 600;
  line-height: 1.4;
}

.footer-links a {
  display: block;
  color: #FFD700;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 0.3rem 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: #aaa;
}

/* User indicator in nav */
.user-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFD700;
  font-weight: 600;
  margin-right: 1rem;
}

.user-indicator i {
  font-size: 1.2rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem; /* Add padding to prevent edge overlap */
}

/* Search Suggestions */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-top: 0.5rem;
}

.search-suggestions.active {
  display: block;
}

.suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s ease;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: #f8f8f8;
}

.suggestion-item i {
  color: #FFD700;
  font-size: 1rem;
}

.suggestion-text {
  flex: 1;
}

.suggestion-category {
  font-size: 0.75rem;
  color: #888;
  background: #f0f0f0;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.no-results {
  padding: 1rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.search-wrapper {
  position: relative;
}

/* Notification Bell */
.notification-bell {
  position: relative;
  margin-right: 1rem;
}

.notification-btn {
  position: relative;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: #FFD700;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.notification-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #FFD700;
  transform: scale(1.05);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.4rem;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Notification Dropdown */
.notification-dropdown {
  position: fixed; /* detach from header so it doesn't affect layout */
  top: 70px; /* roughly below header; keeps dropdown inside viewport */
  right: 20px;
  width: 380px;
  max-width: calc(100% - 40px);
  max-height: 60vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #FFD700;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  z-index: 99999;
  animation: slideDown 0.3s ease;
}

.notification-dropdown.active {
  display: flex;
}

.notification-dropdown-header {
  padding: 1rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-dropdown-header h4 {
  margin: 0;
  color: #FFD700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mark-all-read-btn {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #FFD700;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mark-all-read-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #FFD700;
}

.notification-dropdown-list {
  flex: 1;
  overflow-y: auto;
  max-height: 350px;
}

.notification-dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.notification-dropdown-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.notification-dropdown-list::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.3);
  border-radius: 3px;
}

.notification-dropdown-item {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  gap: 0.75rem;
}

.notification-dropdown-item:hover {
  background: rgba(255, 215, 0, 0.05);
}

.notification-dropdown-item.unread {
  background: rgba(255, 215, 0, 0.08);
  border-left: 3px solid #FFD700;
}

.notification-dropdown-item .notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.notification-dropdown-item .notification-icon.status-update {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.notification-dropdown-item .notification-icon.message {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.notification-dropdown-item .notification-content {
  flex: 1;
  min-width: 0;
}

.notification-dropdown-item .notification-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.notification-dropdown-item .notification-message {
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-dropdown-item .notification-time {
  color: #888;
  font-size: 0.75rem;
}

.notification-loading,
.notification-empty {
  padding: 2rem;
  text-align: center;
  color: #aaa;
}

.notification-loading i {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.notification-empty i {
  font-size: 2rem;
  color: rgba(255, 215, 0, 0.3);
  margin-bottom: 0.5rem;
  display: block;
}

.notification-dropdown-footer {
  padding: 0.75rem;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  text-align: center;
}

.view-all-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: #FFA500;
}

@media (max-width: 480px) {
  .notification-dropdown {
    width: calc(100vw - 2rem);
    right: -1rem;
  }
}

/* Hero Highlight for Custom Prints */
.hero-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.5rem 0;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.hero-highlight i {
  font-size: 1.5rem;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
  }
}

/* Carousel Container */
.carousel-container {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  background: transparent;
  margin-bottom: 2rem;
}

.carousel-track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.carousel-row {
  display: flex;
  gap: 1.5rem;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.carousel-row-right {
  animation: scrollRight 30s linear infinite;
}

.carousel-row-left {
  animation: scrollLeft 30s linear infinite;
}

.carousel-item {
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  background: rgba(25, 25, 25, 0.9);
  border: 2px solid #FFD700;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.carousel-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
}

.carousel-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.carousel-item span {
  display: block;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: #FFD700;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.8);
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Pause animation on hover */
.carousel-row:hover {
  animation-play-state: paused;
}

/* Mobile Responsive for Carousel */
@media (max-width: 768px) {
  .hero-highlight {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .carousel-item {
    width: 220px;
    height: 280px;
  }

  .carousel-item img {
    height: 220px;
  }

  .carousel-row-right {
    animation: scrollRight 20s linear infinite;
  }

  .carousel-row-left {
    animation: scrollLeft 20s linear infinite;
  }
}

@media (max-width: 480px) {
  .hero-highlight {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .carousel-item {
    width: 180px;
    height: 240px;
  }

  .carousel-item img {
    height: 180px;
  }

  .carousel-item span {
    font-size: 0.85rem;
    padding: 0.75rem;
  }
}

/* Mobile Responsive - What We Offer */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .teaser-title {
    font-size: 2rem;
  }

  .rotating-services {
    font-size: 1.5rem;
    flex-direction: column;
  }

  .service-highlight-container {
    min-width: 250px;
    height: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem 0.75rem;
  }

  .service-card i {
    font-size: 2.5rem;
  }

  .service-card h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .teaser-title {
    font-size: 1.75rem;
  }

  .rotating-services {
    font-size: 1.2rem;
  }

  .service-highlight-container {
    min-width: 200px;
    height: 2rem;
  }

  .service-highlight {
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* Profile Dropdown */
.profile-dropdown-container {
  position: relative;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.profile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.profile-btn i:last-child {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.profile-dropdown.active .profile-btn i:last-child {
  transform: rotate(180deg);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #FFD700;
  border-radius: 12px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.profile-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.profile-dropdown-item:hover {
  background: rgba(255, 215, 0, 0.1);
  padding-left: 1.5rem;
}

.profile-dropdown-item i {
  color: #FFD700;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.profile-dropdown-divider {
  height: 1px;
  background: rgba(255, 215, 0, 0.2);
  margin: 0.5rem 0;
}

.profile-dropdown-item.logout-item {
  color: #ef4444;
}

.profile-dropdown-item.logout-item i {
  color: #ef4444;
}

.profile-dropdown-item.logout-item:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* Light mode profile dropdown */
[data-theme="light"] .profile-btn {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
}

[data-theme="light"] .profile-dropdown {
  background: #ffffff;
  border-color: #f97316;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .profile-dropdown-item {
  color: #1a1a1a;
}

[data-theme="light"] .profile-dropdown-item:hover {
  background: rgba(249, 115, 22, 0.1);
}

[data-theme="light"] .profile-dropdown-item i {
  color: #f97316;
}

[data-theme="light"] .profile-dropdown-divider {
  background: rgba(249, 115, 22, 0.2);
}

[data-theme="light"] .profile-dropdown-item.logout-item {
  color: #dc2626;
}

[data-theme="light"] .profile-dropdown-item.logout-item i {
  color: #dc2626;
}

[data-theme="light"] .profile-dropdown-item.logout-item:hover {
  background: rgba(220, 38, 38, 0.1);
}

/* ========== HERO SECTION WITH CLEAR-LINESBG BACKGROUND ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a; /* Fallback color */
  background-image: url('../assets/clear-linesbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Theme-specific hero overlays */
[data-theme="light"] .hero {
  background-image: url('../assets/clear-linesbg.jpg');
}

[data-theme="light"] .hero-bg-overlay {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.8) 100%);
}

[data-theme="material"] .hero {
  background-image: url('../assets/clear-linesbg.jpg');
}

[data-theme="material"] .hero-bg-overlay {
  background: radial-gradient(ellipse at center, rgba(103, 58, 183, 0.1) 30%, rgba(103, 58, 183, 0.3) 100%);
}

[data-theme="dark"] .hero {
  background-image: url('../assets/clear-linesbg.jpg');
}

[data-theme="dark"] .hero-bg-overlay {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.5) 100%);
}

/* ========== VERTICAL ADVANTAGES SECTION ========== */

.advantages-section {
  padding: 0;
  background: var(--bg-color);
}

.advantages-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.advantage-item-vertical {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.6s ease;
  background-color: rgba(26, 26, 26, 0.9);
}

.advantage-item-vertical.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Ensure smooth transitions */
.advantage-item-vertical:first-child {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.advantage-content-wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 600px;
  padding: 2.5rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.advantage-item-vertical:hover .advantage-content-wrapper {
  transform: scale(1.02);
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.advantage-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.advantage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: background 0.6s ease;
  width: 100%;
  height: 100%;
}

.advantage-item-vertical:hover .advantage-bg-image {
  opacity: 1;
}

.advantage-item-vertical:hover .advantage-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* Background images for each advantage */
.advantage-item-vertical[data-bg="asset1"] .advantage-bg-image {
  background-image: url('../assets/asset1.jpg');
}

.advantage-item-vertical[data-bg="asset2"] .advantage-bg-image {
  background-image: url('../assets/asset2.jpg');
}

.advantage-item-vertical[data-bg="asset3"] .advantage-bg-image {
  background-image: url('../assets/asset3.jpg');
}

.advantage-icon {
  margin-bottom: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 15;
}

.advantage-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.6s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
}

.advantage-item-vertical:hover .advantage-icon {
  transform: translateY(-10px) scale(1.1);
}

.advantage-item-vertical:hover .advantage-icon img {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) brightness(1.2);
}

.advantage-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFD700;
  margin: 0 0 1.5rem 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
  transition: all 0.6s ease;
  position: relative;
  z-index: 15;
}

.advantage-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: all 0.6s ease;
  position: relative;
  z-index: 15;
}

/* Hover effects for specific advantages */
.advantage-item-vertical[data-advantage="convenient"]:hover .advantage-title {
  color: #22C55E;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 4px 8px rgba(0, 0, 0, 0.5);
}

.advantage-item-vertical[data-advantage="quality"]:hover .advantage-title {
  color: #A855F7;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.6), 0 4px 8px rgba(0, 0, 0, 0.5);
}

.advantage-item-vertical[data-advantage="fast"]:hover .advantage-title {
  color: #3B82F6;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Staggered animation delays */
.advantage-item-vertical:nth-child(1) {
  transition-delay: 0.2s;
}

.advantage-item-vertical:nth-child(2) {
  transition-delay: 0.4s;
}

.advantage-item-vertical:nth-child(3) {
  transition-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .advantage-item-vertical {
    min-height: 80vh;
  }
  
  .advantage-content-wrapper {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }
  
  .advantage-title {
    font-size: 2rem;
  }
  
  .advantage-description {
    font-size: 1rem;
  }
  
  .advantage-icon img {
    width: 60px;
    height: 60px;
  }
  
  .hero {
    background-attachment: scroll;
  }
  
  .advantage-bg-image {
    background-attachment: scroll;
  }
}

/* Theme-specific styling */
[data-theme="light"] .advantage-item-vertical {
  background-color: rgba(248, 250, 252, 0.95);
}

[data-theme="light"] .advantage-content-wrapper {
  background: rgba(255, 255, 255, 0.7); /* Semi-transparent for light theme */
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .advantage-item-vertical:hover .advantage-content-wrapper {
  background: rgba(255, 255, 255, 0.85); /* Slightly more opaque on hover */
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  transform: scale(1.02); /* Same small scale for consistency */
}

[data-theme="light"] .advantage-title {
  color: #B45309;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .advantage-description {
  color: rgba(0, 0, 0, 0.8);
  text-shadow: none;
}

[data-theme="light"] .advantage-overlay {
  background: rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .advantage-item-vertical:hover .advantage-overlay {
  background: rgba(255, 255, 255, 0.2);
}

[data-theme="material"] .advantage-item-vertical {
  background-color: rgba(103, 58, 183, 0.15);
}

[data-theme="material"] .advantage-content-wrapper {
  background: rgba(103, 58, 183, 0.3); /* Semi-transparent for material theme */
  border-color: rgba(103, 58, 183, 0.5);
  box-shadow: 0 8px 25px rgba(103, 58, 183, 0.2);
}

[data-theme="material"] .advantage-item-vertical:hover .advantage-content-wrapper {
  background: rgba(103, 58, 183, 0.45); /* Slightly more opaque on hover */
  border-color: rgba(103, 58, 183, 0.7);
  box-shadow: 0 12px 35px rgba(103, 58, 183, 0.3);
  transform: scale(1.02); /* Same small scale for consistency */
}

[data-theme="material"] .advantage-title {
  color: #7C4DFF;
}

[data-theme="material"] .advantage-description {
  color: rgba(255, 255, 255, 0.95);
}

[data-theme="material"] .advantage-item-vertical[data-advantage="convenient"]:hover .advantage-title {
  color: #00E676;
}

[data-theme="material"] .advantage-item-vertical[data-advantage="quality"]:hover .advantage-title {
  color: #7C4DFF;
}

[data-theme="material"] .advantage-item-vertical[data-advantage="fast"]:hover .advantage-title {
  color: #2196F3;
}

/* Pulse animation for icons */
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.advantage-item-vertical:hover .advantage-icon img {
  animation: iconPulse 2s ease-in-out infinite;
}

/* Floating particles effect */
.advantage-item-vertical::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

.advantage-item-vertical:hover::after {
  opacity: 1;
}