/* ============================================
   Modern Tech Style - 液态玻璃效果 & 科技时尚
   ============================================ */

/* CSS Variables for Theme */
:root {
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-bg-dark: rgba(0, 0, 0, 0.2);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(252, 143, 198, 0.15);
  --gradient-primary: linear-gradient(135deg, rgba(252, 143, 198, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  --gradient-secondary: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 143, 198, 0.8) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(252, 143, 198, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(252, 143, 198, 0.2) 100%);
  --neon-glow: 0 0 20px rgba(252, 143, 198, 0.5), 0 0 40px rgba(252, 143, 198, 0.3), 0 0 60px rgba(252, 143, 198, 0.1);
  --text-glow: 0 0 10px rgba(252, 143, 198, 0.8);
}

/* Global Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(252, 143, 198, 0.3); }
  50% { box-shadow: 0 0 40px rgba(252, 143, 198, 0.6); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes border-flow {
  0%, 100% { border-color: rgba(252, 143, 198, 0.5); }
  50% { border-color: rgba(252, 143, 198, 1); }
}

/* Glassmorphism Base Classes */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(252, 143, 198, 0.25);
  border-color: rgba(252, 143, 198, 0.5);
}

.glass-card-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
}

/* Header Enhancement */
.header {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(252, 143, 198, 0.2);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 5px 30px rgba(252, 143, 198, 0.15);
}

.header .logo h1 {
  background: linear-gradient(135deg, #fff 0%, #fc8fc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
}

.navbar a:hover,
.navbar .active {
  text-shadow: var(--text-glow);
}

.navbar > ul > li > a::before {
  background: linear-gradient(90deg, #fc8fc6, #fff, #fc8fc6) !important;
  background-size: 200% 100%;
  animation: gradient-shift 2s ease infinite;
}

/* Hero Section Enhancement */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  pointer-events: none;
  z-index: 2;
}

.hero .info {
  z-index: 3;
}

.hero .info h2 {
  text-shadow: 0 0 30px rgba(252, 143, 198, 0.5);
  animation: slide-in-up 0.8s ease-out;
}

.hero .info h2 span {
  background: linear-gradient(135deg, #fc8fc6 0%, #fff 50%, #fc8fc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

.hero .info p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: slide-in-up 0.8s ease-out 0.2s both;
}

.hero .info .btn-get-started {
  background: rgba(252, 143, 198, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(252, 143, 198, 0.5);
  position: relative;
  overflow: hidden;
  animation: slide-in-up 0.8s ease-out 0.4s both;
}

.hero .info .btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.hero .info .btn-get-started:hover::before {
  left: 100%;
}

.hero .info .btn-get-started:hover {
  background: rgba(252, 143, 198, 0.4);
  border-color: #fc8fc6;
  box-shadow: var(--neon-glow);
  transform: scale(1.05);
}

/* Carousel Enhancement */
.hero .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  background: rgba(252, 143, 198, 0.3) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(252, 143, 198, 0.5);
  transition: all 0.3s ease;
}

.hero .carousel-control-prev-icon:hover,
.hero .carousel-control-next-icon:hover {
  background: rgba(252, 143, 198, 0.5) !important;
  box-shadow: var(--neon-glow);
  transform: scale(1.1);
}

/* Section Header Enhancement */
.section-header h2 {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #2e3135 0%, #fc8fc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2::before,
.section-header h2::after {
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #fc8fc6, transparent) !important;
  border-radius: 2px;
}

/* Video Section Special Header */
.video-section-header h2,
.section-header.video-title h2 {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(135deg, rgba(252, 143, 198, 0.1) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(252, 143, 198, 0.1) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(252, 143, 198, 0.3);
  border-radius: 50px;
  color: #2e3135;
  -webkit-text-fill-color: #2e3135;
  box-shadow: 
    0 10px 30px rgba(252, 143, 198, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: pulse-glow 3s ease-in-out infinite;
}

.video-section-header h2::before,
.video-section-header h2::after,
.section-header.video-title h2::before,
.section-header.video-title h2::after {
  display: none;
}

/* Service Cards Enhancement */
.services .service-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fc8fc6, #fff, #fc8fc6);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services .service-item:hover::before {
  opacity: 1;
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(252, 143, 198, 0.2);
  border-color: rgba(252, 143, 198, 0.4);
}

.services .service-item .icon {
  position: relative;
}

.services .service-item .icon i {
  color: #fc8fc6;
  transition: all 0.3s ease;
}

.services .service-item:hover .icon i {
  transform: scale(1.2);
  text-shadow: var(--text-glow);
}

.services .service-item .icon::before {
  background: rgba(252, 143, 198, 0.1) !important;
  border: 2px solid rgba(252, 143, 198, 0.3);
}

.services .service-item h3 {
  border-bottom-color: rgba(252, 143, 198, 0.3) !important;
  transition: all 0.3s ease;
}

.services .service-item:hover h3 {
  border-bottom-color: #fc8fc6 !important;
  color: #fc8fc6;
}

/* Constructions Section Enhancement */
.constructions .card-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.constructions .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(252, 143, 198, 0.2);
  border-color: rgba(252, 143, 198, 0.5);
}

.constructions .card-item .card-bg {
  position: relative;
  overflow: hidden;
}

.constructions .card-item .card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(252, 143, 198, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.constructions .card-item:hover .card-bg::after {
  opacity: 1;
}

/* Alt Services Section Enhancement */
.alt-services .img-bg {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.alt-services .img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252, 143, 198, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.alt-services .icon-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.alt-services .icon-box:hover {
  transform: translateX(10px);
  border-color: rgba(252, 143, 198, 0.5);
  box-shadow: 0 10px 30px rgba(252, 143, 198, 0.15);
}

.alt-services .icon-box i {
  background: linear-gradient(135deg, #fc8fc6 0%, #fff 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.alt-services .icon-box:hover i {
  transform: rotate(10deg) scale(1.1);
}

/* Testimonials Section Enhancement */
.testimonials .testimonial-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fc8fc6, #fff, #fc8fc6);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(252, 143, 198, 0.2);
}

.testimonials .testimonial-img {
  border: 3px solid rgba(252, 143, 198, 0.5) !important;
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .testimonial-img {
  box-shadow: 0 0 20px rgba(252, 143, 198, 0.5);
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  background: rgba(252, 143, 198, 0.3);
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: #fc8fc6;
  box-shadow: 0 0 10px rgba(252, 143, 198, 0.5);
}

/* Breadcrumbs Enhancement */
.breadcrumbs {
  position: relative;
}

.breadcrumbs::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252, 143, 198, 0.3) 0%, rgba(252, 255, 255, 0.1) 60%);
  pointer-events: none;
}

.breadcrumbs h2 {
  color: #fff;
  text-shadow: 0 0 30px rgba(252, 143, 198, 1);
  position: relative;
  z-index: 1;
  -webkit-text-fill-color: #fff;
}

.breadcrumbs ol {
  position: relative;
  z-index: 1;
}

/* About Section Enhancement */
.about .our-story {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about .our-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #fc8fc6, #fff, #fc8fc6);
  background-size: 100% 200%;
  animation: gradient-shift 3s ease infinite;
}

.about h2 {
  background: linear-gradient(135deg, #2e3135 0%, #fc8fc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about ul li i {
  color: #fc8fc6;
  animation: pulse-glow 2s ease infinite;
  border-radius: 50%;
}

.about .watch-video i {
  color: #fc8fc6;
  transition: all 0.3s ease;
}

.about .watch-video:hover i {
  transform: scale(1.2);
  text-shadow: var(--text-glow);
}

/* Stats Counter Enhancement */
.stats-counter .stats-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stats-counter .stats-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fc8fc6, #fff, #fc8fc6);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

.stats-counter .stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(252, 143, 198, 0.2);
}

.stats-counter .stats-item i {
  color: #fc8fc6 !important;
  transition: all 0.3s ease;
}

.stats-counter .stats-item:hover i {
  transform: scale(1.2);
  text-shadow: var(--text-glow);
}

.video-container {
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, rgba(252, 143, 198, 0.1) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(252, 143, 198, 0.1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 2px solid rgba(252, 143, 198, 0.3);
  box-shadow: 
    0 20px 60px rgba(252, 143, 198, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
}

.video-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #fc8fc6, transparent, #fc8fc6, transparent);
  background-size: 400% 400%;
  animation: gradient-shift 8s ease infinite;
  border-radius: 27px;
  z-index: -1;
  opacity: 0.5;
}

.video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #fc8fc6, #fff, #fc8fc6, transparent);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

.video-container .ratio {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(252, 143, 198, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-container video {
  border-radius: 15px;
  background: #000;
}

.video-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 143, 198, 0.3) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.video-decoration-1 {
  top: -30px;
  left: -30px;
  animation-delay: 0s;
}

.video-decoration-2 {
  bottom: -30px;
  right: -30px;
  animation-delay: 2s;
}

.video-decoration-3 {
  top: 50%;
  right: -50px;
  animation-delay: 4s;
}

.video-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #fc8fc6 0%, #fff 100%);
  border-radius: 25px;
  font-weight: 600;
  color: #2e3135;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(252, 143, 198, 0.3);
  animation: float 4s ease-in-out infinite;
}

.video-title-badge i {
  font-size: 1.2rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Team Section Enhancement */
.team-category {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.team-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fc8fc6, #fff, #fc8fc6);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

.team-category h3 {
  background: linear-gradient(135deg, #fc8fc6 0%, #2e3135 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-category h3::after {
  background: linear-gradient(90deg, transparent, #fc8fc6, transparent) !important;
}

.team-member {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-member:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(252, 143, 198, 0.25);
  border-color: rgba(252, 143, 198, 0.5);
}

.team-member img {
  border: 3px solid rgba(252, 143, 198, 0.4);
  transition: all 0.4s ease;
}

.team-member:hover img {
  border-color: #fc8fc6;
  box-shadow: 0 0 30px rgba(252, 143, 198, 0.5);
}

.team-member h5 {
  background: linear-gradient(135deg, #fc8fc6 0%, #2e3135 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gallery Section Enhancement */
.projects .portfolio-content {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(252, 143, 198, 0.2);
  transition: all 0.4s ease;
}

.projects .portfolio-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(252, 143, 198, 0.25);
}

.projects .portfolio-content .portfolio-info {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.projects .portfolio-content .portfolio-info h4 {
  background: linear-gradient(135deg, #fc8fc6 0%, #fff 100%);
  border-radius: 20px;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  text-shadow: var(--text-glow);
  transform: scale(1.2);
}

/* Footer Enhancement */
.footer {
  position: relative;
}

.footer::before {
  background: linear-gradient(180deg, rgba(252, 143, 198, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%) !important;
}

.footer .footer-content {
  position: relative;
  z-index: 1;
}

.footer h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-text-stroke: 1.5px rgba(252, 143, 198, 0.8);
  paint-order: stroke fill;
  text-shadow: 
    0 0 15px rgba(252, 143, 198, 0.9),
    0 0 30px rgba(252, 143, 198, 0.6);
}

.footer .footer-info p,
.footer .footer-info strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  -webkit-text-stroke: 0.8px rgba(252, 143, 198, 0.6);
  paint-order: stroke fill;
  text-shadow: 0 0 10px rgba(252, 143, 198, 0.5);
}

.footer h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  -webkit-text-stroke: 1px rgba(252, 143, 198, 0.7);
  paint-order: stroke fill;
  text-shadow: 0 0 12px rgba(252, 143, 198, 0.6);
}

.footer .footer-links ul li a {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  -webkit-text-stroke: 0.5px rgba(252, 143, 198, 0.5);
  paint-order: stroke fill;
}

.footer .footer-links ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #fc8fc6;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer .footer-links ul li a:hover::before {
  opacity: 1;
}

.footer .footer-links ul li a:hover {
  padding-left: 20px;
  color: #fc8fc6;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  text-shadow: 
    0 0 15px rgba(252, 143, 198, 1),
    0 0 25px rgba(252, 143, 198, 0.7);
}

.footer .social-links a {
  background: rgba(252, 143, 198, 0.2);
  border: 1px solid rgba(252, 143, 198, 0.3);
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: #fc8fc6;
  box-shadow: var(--neon-glow);
  transform: translateY(-3px);
}

.footer .copyright {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  -webkit-text-stroke: 0.5px rgba(252, 143, 198, 0.4);
  paint-order: stroke fill;
  text-shadow: 0 0 8px rgba(252, 143, 198, 0.4);
}

.footer .copyright a {
  color: #fc8fc6;
  font-weight: 600;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 10px rgba(252, 143, 198, 0.6);
}

/* Scroll Top Button Enhancement */
.scroll-top {
  background: linear-gradient(135deg, #fc8fc6 0%, #fff 100%) !important;
  border-radius: 50% !important;
  box-shadow: 0 5px 20px rgba(252, 143, 198, 0.4);
  transition: all 0.3s ease;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
}

.scroll-top i {
  color: #2e3135 !important;
}

/* Preloader Enhancement */
#preloader::before {
  border-color: #fc8fc6 transparent #fc8fc6 transparent !important;
  animation: animate-preloader 1s linear infinite, pulse-glow 1.5s ease infinite;
}

/* Video Container Enhancement */
.ratio {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(252, 143, 198, 0.3);
  box-shadow: 0 10px 40px rgba(252, 143, 198, 0.2);
}

/* Modal Enhancement */
.modal-content {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.3);
  border-radius: 20px !important;
}

/* Dropdown Menu Enhancement */
.navbar .dropdown ul {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 15px;
}

.user-dropdown-content {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 15px;
}

/* Button Enhancement */
.btn-get-started,
.contact-us-style {
  position: relative;
  overflow: hidden;
}

.btn-get-started::after,
.contact-us-style::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

/* Section Background Enhancement */
.section-bg {
  background: linear-gradient(180deg, rgba(252, 143, 198, 0.05) 0%, rgba(255, 255, 255, 1) 100%) !important;
}

/* Card Item Enhancement */
.card-item {
  border-radius: 20px !important;
  overflow: hidden;
}

/* Icon Box Enhancement */
.icon-box {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Contact Section Enhancement */
.contact .info-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(252, 143, 198, 0.2);
}

.contact .info-item i {
  border-color: rgba(252, 143, 198, 0.5) !important;
  transition: all 0.3s ease;
}

.contact .info-item:hover i {
  background: rgba(252, 143, 198, 0.1);
  box-shadow: 0 0 20px rgba(252, 143, 198, 0.3);
}

/* Form Enhancement */
.contact .php-email-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 20px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #fc8fc6;
  box-shadow: 0 0 20px rgba(252, 143, 198, 0.2);
}

.contact .php-email-form button[type="submit"] {
  background: linear-gradient(135deg, #fc8fc6 0%, #fff 100%);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--neon-glow);
}

/* Blog Enhancement */
.recent-blog-posts .post-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 143, 198, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.recent-blog-posts .post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(252, 143, 198, 0.2);
}

.recent-blog-posts .post-date {
  background: linear-gradient(135deg, #fc8fc6 0%, #fff 100%) !important;
  border-radius: 15px 0 0 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .glass-card,
  .services .service-item,
  .constructions .card-item,
  .testimonials .testimonial-item,
  .stats-counter .stats-item,
  .team-category,
  .team-member,
  .contact .info-item,
  .contact .php-email-form {
    border-radius: 15px;
  }
  
  .hero .info h2 {
    font-size: 32px;
  }
}

/* Particle Background Container */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(252, 143, 198, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) rotate(360deg);
    opacity: 0;
  }
}

/* Glow Text Effect */
.glow-text {
  text-shadow: 0 0 10px rgba(252, 143, 198, 0.8),
               0 0 20px rgba(252, 143, 198, 0.6),
               0 0 30px rgba(252, 143, 198, 0.4);
}

/* Animated Border */
.animated-border {
  position: relative;
}

.animated-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, #fc8fc6, #fff, #fc8fc6, #fff);
  background-size: 300% 300%;
  animation: gradient-shift 3s ease infinite;
  border-radius: inherit;
  z-index: -1;
}

/* Hover Lift Effect */
.hover-lift {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(252, 143, 198, 0.25);
}

/* Neon Button */
.neon-btn {
  position: relative;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #fc8fc6;
  color: #fc8fc6;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.neon-btn:hover {
  background: #fc8fc6;
  color: #fff;
  box-shadow: 0 0 20px rgba(252, 143, 198, 0.5),
              0 0 40px rgba(252, 143, 198, 0.3),
              0 0 60px rgba(252, 143, 198, 0.1);
}

/* Liquid Glass Effect */
.liquid-glass {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0.3) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(252, 143, 198, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

/* Morphing Shape */
.morph-shape {
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* Floating Animation */
.floating {
  animation: float 6s ease-in-out infinite;
}

/* Pulse Animation */
.pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Gradient Animation */
.gradient-animate {
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, #fc8fc6 0%, #fff 50%, #fc8fc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

/* Card Shine Effect */
.card-shine {
  position: relative;
  overflow: hidden;
}

.card-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.card-shine:hover::after {
  transform: translateX(100%);
}
