/*--------------------------------------------------------------
# Template Name: Vesperr
# Template URL: https://bootstrapmade.com/vesperr-free-bootstrap-template/
# Author: BootstrapMade.com
# License: https://bootstrapmade.com/license/
--------------------------------------------------------------*/

:root {
  --background-color: #1a0a10;
  --default-color: #e0c8d0;
  --heading-color: #ffffff;
  --accent-color: #e91e63;
  --surface-color: rgba(255,255,255,0.05);
  --contrast-color: #ffffff;
  --nav-color: #e0c8d0;
  --nav-hover-color: #e91e63;
  --nav-mobile-background-color: #1a0a10;
  --nav-dropdown-background-color: #1a0a10;
  --nav-dropdown-color: #e0c8d0;
  --nav-dropdown-hover-color: #e91e63;
  --default-font: 'Roboto', system-ui, sans-serif;
  --heading-font: 'Raleway', sans-serif;
  --nav-font: 'Poppins', sans-serif;
}

.light-background {
  --background-color: #1f0e15;
  --surface-color: rgba(255,255,255,0.08);
}

.dark-background {
  --background-color: #0f0508;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(255,255,255,0.03);
  --contrast-color: #ffffff;
}

:root { scroll-behavior: smooth; }

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a { color: var(--accent-color); text-decoration: none; transition: 0.3s; }
a:hover { color: #d4a017; }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# PHP Email Form
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none; color: #fff; background: #df1529;
  text-align: left; padding: 15px; margin-bottom: 24px; font-weight: 600;
}
.php-email-form .sent-message {
  display: none; color: #fff; background: #059652;
  text-align: center; padding: 15px; margin-bottom: 24px; font-weight: 600;
}
.php-email-form .loading {
  display: none; background: var(--surface-color); text-align: center;
  padding: 15px; margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: ""; display: inline-block; border-radius: 50%;
  width: 24px; height: 24px; margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: transparent;
  animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: rgba(26,10,16,0.85);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(233,30,99,0.1);
}
.header .logo img { max-height: 36px; margin-right: 8px; }
.header .logo h1 {
  font-size: 24px; margin: 0; font-weight: 700;
  color: var(--heading-color); font-family: var(--heading-font);
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff; background: linear-gradient(135deg, #e91e63, #d4a017);
  font-size: 14px; padding: 8px 26px; margin: 0 0 0 30px;
  border-radius: 50px; transition: 0.3s; font-family: var(--nav-font); border: 0;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  box-shadow: 0 0 20px rgba(233,30,99,0.4);
}
@media (max-width: 1200px) {
  .header .logo { order: 1; }
  .header .btn-getstarted { order: 2; margin: 0 15px 0 0; padding: 6px 20px; }
  .header .navmenu { order: 3; }
}
@media (max-width: 767px) {
  .header .btn-getstarted { display: none; }
}
.scrolled .header {
  box-shadow: 0 0 30px rgba(233,30,99,0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Nav */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
  .navmenu li { position: relative; }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color); padding: 18px 15px; font-size: 15px;
    font-family: var(--nav-font); font-weight: 400;
    display: flex; align-items: center; justify-content: space-between;
    white-space: nowrap; transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; transition: 0.3s; }
  .navmenu li:last-child a { padding-right: 0; }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: var(--nav-hover-color); }
  .navmenu .dropdown ul {
    margin: 0; padding: 10px 0; background: var(--nav-dropdown-background-color);
    display: block; position: absolute; visibility: hidden; left: 14px;
    top: 130%; opacity: 0; transition: 0.3s; border-radius: 4px; z-index: 99;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(233,30,99,0.1);
    backdrop-filter: blur(10px);
  }
  .navmenu .dropdown ul li { min-width: 200px; }
  .navmenu .dropdown ul a {
    padding: 10px 20px; font-size: 15px; text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i { font-size: 12px; }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover > ul { opacity: 1; top: 100%; visibility: visible; }
  .navmenu .dropdown .dropdown ul { top: 0; left: -90%; visibility: hidden; }
  .navmenu .dropdown .dropdown:hover > ul { opacity: 1; top: 0; left: -100%; visibility: visible; }
}

/* Mobile Nav */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color); font-size: 28px; line-height: 0;
    margin-right: 10px; cursor: pointer; transition: color 0.3s;
  }
  .navmenu { padding: 0; z-index: 9997; }
  .navmenu ul {
    display: none; position: absolute; inset: 60px 20px 20px 20px;
    padding: 10px 0; margin: 0; border-radius: 6px; z-index: 9998;
    overflow-y: auto; background: #1a0a10;
    transition: 0.3s; box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(233,30,99,0.1);
    list-style: none;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color); padding: 10px 20px;
    font-family: var(--nav-font); font-size: 17px;
    font-weight: 500; display: flex; align-items: center;
    justify-content: space-between; white-space: nowrap; transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px; line-height: 0; margin-left: 5px; width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: 0.3s;
    background-color: rgba(233,30,99,0.1);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background: linear-gradient(135deg, #e91e63, #d4a017); color: #fff;
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus { color: var(--nav-hover-color); }
  .navmenu .active i,
  .navmenu .active:focus i { background: linear-gradient(135deg, #e91e63, #d4a017); color: #fff; transform: rotate(180deg); }
  .navmenu .dropdown ul {
    position: static; display: none; z-index: 99;
    padding: 10px 0; margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid rgba(233,30,99,0.1);
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul { background-color: rgba(255,255,255,0.03); }
  .navmenu .dropdown > .dropdown-active { display: block; background-color: rgba(255,255,255,0.03); }
  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff; position: absolute; font-size: 32px;
    top: 15px; right: 15px; margin-right: 0; z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed; overflow: hidden; inset: 0;
    background: rgba(15,5,8,0.9); transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul { display: block; }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #0f0508;
  --default-color: #c8d6e5;
  --heading-color: #ffffff;
  --surface-color: rgba(255,255,255,0.03);
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px; padding: 40px 0 30px 0;
}
.footer .copyright p { margin-bottom: 0; }
.footer .social-links { margin-bottom: 15px; }
.footer .social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; font-size: 16px;
  color: var(--default-color);
  border: 1px solid rgba(233,30,99,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  margin: 0 5px; transition: 0.3s;
}
.footer .social-links a:hover {
  color: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(233,30,99,0.3);
  background: linear-gradient(135deg, #e91e63, #d4a017);
}
.footer .credits { margin-top: 10px; font-size: 13px; }
.footer .credits a { color: var(--accent-color); }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed; inset: 0; z-index: 999999; overflow: hidden;
  background: #1a0a10;
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: ""; position: fixed; top: calc(50% - 30px); left: calc(50% - 30px);
  border: 6px solid transparent;
  border-color: #e91e63 transparent #d4a017 transparent;
  border-radius: 50%; width: 60px; height: 60px;
  animation: preloader-spin 1.5s linear infinite;
}
@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed; visibility: hidden; opacity: 0; right: 15px; bottom: 15px;
  z-index: 99999; background: linear-gradient(135deg, #e91e63, #d4a017);
  width: 44px; height: 44px;
  border-radius: 50px; transition: all 0.4s;
}
.scroll-top i { font-size: 24px; color: #fff; line-height: 0; }
.scroll-top:hover { box-shadow: 0 0 20px rgba(233,30,99,0.5); }
.scroll-top.active { visibility: visible; opacity: 1; }

/*--------------------------------------------------------------
# Disable AOS Delay on Mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
}
.page-title .heading {
  padding: 30px 0;
  border-top: 1px solid rgba(233,30,99,0.1);
}
.page-title .heading h1 { font-size: 38px; font-weight: 700; }
.page-title nav { font-size: 15px; }
.page-title nav ol { padding: 0; list-style: none; }
.page-title nav ol li + li::before {
  content: "/"; display: inline-block; padding: 0 10px;
  color: rgba(200,214,229,0.3);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title { text-align: center; padding-bottom: 60px; }
.section-title h2 {
  font-size: 32px; font-weight: 700; position: relative;
  color: var(--heading-color);
}
.section-title h2:before,
.section-title h2:after {
  content: ""; width: 50px; height: 2px;
  background: linear-gradient(135deg, #e91e63, #d4a017);
  display: inline-block;
}
.section-title h2:before { margin: 0 15px 10px 0; }
.section-title h2:after { margin: 0 0 10px 15px; }
.section-title p {
  margin-bottom: 0;
  color: rgba(200,214,229,0.7);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  width: 100%; min-height: 80vh; position: relative;
  padding: 80px 0 60px 0;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1a0a10 0%, #2e0a1a 25%, #1a0f0a 50%, #1a0a10 75%, #2e0a1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: var(--default-color);
}
.hero h1 {
  margin: 0; font-size: 48px; font-weight: 700; line-height: 56px;
  background: linear-gradient(135deg, #e91e63, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { margin: 10px 0 0 0; font-size: 20px; color: rgba(200,214,229,0.8); }
.hero .btn-get-started {
  color: #fff; font-family: var(--nav-font); font-weight: 500;
  font-size: 15px; letter-spacing: 1px; display: inline-block;
  padding: 10px 30px; border-radius: 50px; transition: 0.5s;
  margin-top: 30px; border: 0;
  background: linear-gradient(135deg, #e91e63, #d4a017);
}
.hero .btn-get-started:hover {
  box-shadow: 0 0 30px rgba(233,30,99,0.4);
}
.hero .animated { animation: up-down 2s ease-in-out infinite alternate-reverse both; }
@keyframes up-down {
  0% { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 28px; line-height: 36px; }
  .hero p { font-size: 18px; line-height: 24px; }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 16px; font-weight: 500; line-height: 19px;
  padding: 10px 20px; background: rgba(233,30,99,0.1);
  color: var(--accent-color); border-radius: 7px; display: inline-block;
}
.about .content .about-btn {
  padding: 8px 30px; color: var(--accent-color); border-radius: 50px;
  border: 2px solid var(--accent-color); font-weight: 600; transition: 0.3s;
}
.about .content .about-btn:hover {
  background: linear-gradient(135deg, #e91e63, #d4a017);
  color: #fff; border-color: transparent;
  box-shadow: 0 0 20px rgba(233,30,99,0.3);
}
.about .icon-box {
  padding: 30px; position: relative; overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  border-radius: 8px; transition: all 0.3s ease-in-out;
}
.about .icon-box i { font-size: 38px; color: var(--accent-color); margin-bottom: 15px; }
.about .icon-box h4 { font-weight: 700; margin-bottom: 15px; font-size: 18px; }
.about .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(233,30,99,0.2);
  border-color: rgba(233,30,99,0.4);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item { padding: 30px; }
.stats .stats-item i { font-size: 44px; color: var(--accent-color); margin-bottom: 10px; }
.stats .stats-item .purecounter {
  font-size: 40px; font-weight: 700; display: block;
  background: linear-gradient(135deg, #e91e63, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats .stats-item p { margin: 0; font-size: 16px; color: rgba(200,214,229,0.6); }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  padding: 60px 30px; border-radius: 8px; height: 100%;
  position: relative; overflow: hidden; z-index: 1; transition: 0.3s;
}
.services .service-item::before {
  content: ""; position: absolute;
  inset: 0; transition: all 0.3s; z-index: -1; border-radius: 8px;
  background: transparent;
}
.services .service-item .icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #e91e63, #d4a017);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 28px; color: #fff; transition: 0.3s;
}
.services .service-item h3 { font-weight: 700; margin-bottom: 15px; font-size: 20px; }
.services .service-item p { line-height: 24px; font-size: 14px; margin-bottom: 0; }
.services .service-item:hover {
  border-color: rgba(233,30,99,0.5);
  box-shadow: 0 0 30px rgba(233,30,99,0.2);
}
.services .service-item:hover .icon {
  box-shadow: 0 0 20px rgba(233,30,99,0.4);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  min-height: 300px; background-size: cover; background-position: center;
  border-radius: 8px;
}
.alt-services .details {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  padding: 40px 30px; border-radius: 8px;
}
.alt-services .details h3 { font-weight: 700; font-size: 20px; }
.alt-services .details .icon-box { display: flex; align-items: center; padding: 20px 0; }
.alt-services .details .icon-box i { font-size: 28px; color: var(--accent-color); flex-shrink: 0; }
.alt-services .details .icon-box h4 { font-size: 16px; font-weight: 600; margin: 0 0 0 15px; }
.alt-services .img-bg:hover { transform: scale(1.02); }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  padding: 20px; border-radius: 8px; transition: 0.3s;
}
.features .features-item i {
  font-size: 32px; color: var(--accent-color); margin-right: 15px; line-height: 0;
}
.features .features-item h3 { font-weight: 700; margin: 0; font-size: 16px; }
.features .features-item:hover {
  border-color: rgba(233,30,99,0.5);
  box-shadow: 0 0 30px rgba(233,30,99,0.2);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap { padding-left: 50px; }
.testimonials .testimonial-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  padding: 30px; border-radius: 8px; position: relative;
}
.testimonials .testimonial-item .testimonial-img {
  width: 80px; border-radius: 50%;
  border: 4px solid rgba(233,30,99,0.3);
  margin: 0 15px 0 0; float: left;
}
.testimonials .testimonial-item h3 { font-size: 18px; font-weight: 700; margin: 10px 0 5px 0; }
.testimonials .testimonial-item h4 { font-size: 14px; color: rgba(200,214,229,0.6); margin: 0; }
.testimonials .testimonial-item .stars { margin: 10px 0; }
.testimonials .testimonial-item .stars i { color: #ffc107; margin: 0 1px; }
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(233,30,99,0.4); font-size: 26px; line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left { display: inline-block; left: -5px; position: relative; }
.testimonials .testimonial-item .quote-icon-right { display: inline-block; right: -5px; position: relative; top: 10px; transform: scale(-1, -1); }
.testimonials .testimonial-item p { font-style: italic; margin: 15px auto 15px auto; }
.testimonials .swiper-pagination { margin-top: 20px; position: relative; }
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px; height: 12px; background-color: rgba(255,255,255,0.1);
  opacity: 1; border: 1px solid var(--accent-color);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #e91e63, #d4a017);
}
@media (max-width: 767px) {
  .testimonials .testimonial-wrap { padding-left: 0; }
  .testimonials .testimonial-item .testimonial-img { float: none; margin: 0 auto 15px auto; display: block; }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0; margin: 0 auto 25px auto; list-style: none; text-align: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer; display: inline-block; padding: 8px 20px 10px 20px;
  margin: 0 4px; font-size: 15px; font-weight: 600;
  line-height: 1; border-radius: 50px; transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
  border: 1px solid rgba(233,30,99,0.2);
}
.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #fff; background: linear-gradient(135deg, #e91e63, #d4a017); border-color: transparent;
}
.portfolio .portfolio-content {
  position: relative; overflow: hidden; border-radius: 8px;
  border: 1px solid rgba(233,30,99,0.15);
}
.portfolio .portfolio-content img { transition: 0.3s; }
.portfolio .portfolio-content .portfolio-info {
  opacity: 0; position: absolute; inset: 0;
  z-index: 3; transition: all ease-in-out 0.3s;
  background: rgba(26,10,16,0.85);
  backdrop-filter: blur(5px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 15px;
}
.portfolio .portfolio-content .portfolio-info h4 { font-size: 18px; font-weight: 700; color: #fff; }
.portfolio .portfolio-content .portfolio-info p { color: rgba(200,214,229,0.8); font-size: 14px; margin-bottom: 0; }
.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  font-size: 26px; color: #fff; transition: 0.3s; line-height: 1.2; margin: 4px;
}
.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover { color: var(--accent-color); }
.portfolio .portfolio-content:hover .portfolio-info { opacity: 1; }
.portfolio .portfolio-content:hover img { transform: scale(1.1); }

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  overflow: hidden; border-radius: 8px;
  transition: 0.3s;
}
.team .team-member .member-img { position: relative; overflow: hidden; }
.team .team-member .social {
  position: absolute; inset: auto 0 -40px 0;
  display: flex; justify-content: center; align-items: center;
  padding: 10px 0; background: rgba(26,10,16,0.8);
  backdrop-filter: blur(5px);
  transition: bottom ease-in-out 0.4s;
}
.team .team-member .social a { color: #fff; margin: 0 10px; font-size: 18px; transition: 0.3s; }
.team .team-member .social a:hover { color: var(--accent-color); }
.team .team-member:hover .social { bottom: 0; }
.team .team-member:hover {
  box-shadow: 0 0 30px rgba(233,30,99,0.2);
  border-color: rgba(233,30,99,0.4);
}
.team .team-member .member-info { padding: 25px 15px; text-align: center; }
.team .team-member .member-info h4 { font-weight: 700; margin-bottom: 5px; font-size: 18px; }
.team .team-member .member-info span { font-size: 13px; font-weight: 400; color: rgba(200,214,229,0.6); }
.team .team-member .member-info p { font-style: italic; font-size: 14px; padding-top: 15px; line-height: 26px; }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-size: cover; background-position: center;
  position: relative;
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(26,10,16,0.92);
}
.contact .info-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  padding: 30px; border-radius: 8px;
}
.contact .info-item i {
  width: 56px; height: 56px; font-size: 24px;
  display: flex; justify-content: center; align-items: center;
  color: #fff; background: linear-gradient(135deg, #e91e63, #d4a017);
  border-radius: 50%; margin-right: 15px; flex-shrink: 0;
}
.contact .info-item h3 { font-size: 18px; font-weight: 700; margin: 0 0 5px 0; }
.contact .info-item p { padding: 0; margin: 0; font-size: 14px; }
.contact .php-email-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  padding: 30px; border-radius: 8px;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  font-size: 14px; padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid rgba(233,30,99,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--default-color);
  transition: 0.3s;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(233,30,99,0.2);
  outline: none;
}
.contact .php-email-form button[type=submit] {
  color: #fff; background: linear-gradient(135deg, #e91e63, #d4a017);
  border: 0; padding: 10px 36px; border-radius: 50px;
  transition: 0.4s; font-size: 16px;
}
.contact .php-email-form button[type=submit]:hover {
  box-shadow: 0 0 25px rgba(233,30,99,0.4);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  padding: 40px 20px; text-align: center;
  border-radius: 8px; height: 100%; position: relative;
}
.pricing .pricing-item h3 { font-weight: 700; margin-bottom: 15px; font-size: 20px; }
.pricing .pricing-item h4 {
  font-size: 48px; font-weight: 700;
  font-family: var(--heading-font); margin-bottom: 25px;
  background: linear-gradient(135deg, #e91e63, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing .pricing-item h4 sup { font-size: 28px; }
.pricing .pricing-item h4 span {
  color: rgba(200,214,229,0.5); font-size: 18px;
  -webkit-text-fill-color: rgba(200,214,229,0.5);
}
.pricing .pricing-item ul { padding: 20px 0; list-style: none; text-align: left; line-height: 20px; }
.pricing .pricing-item ul li { padding: 10px 0; display: flex; align-items: center; }
.pricing .pricing-item ul i { color: #059652; font-size: 24px; padding-right: 3px; }
.pricing .pricing-item ul .na { color: rgba(200,214,229,0.3); }
.pricing .pricing-item ul .na i { color: rgba(200,214,229,0.3); }
.pricing .pricing-item ul .na span { text-decoration: line-through; }
.pricing .pricing-item .buy-btn {
  color: var(--accent-color); display: inline-block;
  padding: 10px 40px; border-radius: 50px;
  border: 2px solid transparent;
  background-image: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)), linear-gradient(135deg, #e91e63, #d4a017);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: 0.3s; font-size: 16px; font-weight: 600;
}
.pricing .pricing-item .buy-btn:hover {
  background: linear-gradient(135deg, #e91e63, #d4a017);
  color: #fff;
  box-shadow: 0 0 20px rgba(233,30,99,0.3);
}
.pricing .pricing-item.featured {
  border-top: 3px solid;
  border-image: linear-gradient(135deg, #e91e63, #d4a017) 1;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  border-bottom: 1px solid rgba(233,30,99,0.1);
  position: relative; padding: 20px 0;
}
.faq .faq-container .faq-item h3 {
  font-weight: 600; font-size: 17px; padding: 0 40px 0 0; cursor: pointer;
}
.faq .faq-container .faq-item .faq-content { display: none; padding: 10px 0 0 0; }
.faq .faq-container .faq-item .faq-toggle {
  font-size: 24px; position: absolute; top: 20px; right: 0;
  cursor: pointer; color: var(--accent-color); transition: 0.3s;
}
.faq .faq-container .faq-item .faq-toggle.active { transform: rotate(90deg); }

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img { width: 100%; }
.portfolio-details .swiper-pagination { margin-top: 20px; position: relative; }
.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 12px; height: 12px; background-color: rgba(255,255,255,0.1);
  opacity: 1; border: 1px solid var(--accent-color);
}
.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #e91e63, #d4a017);
}
.portfolio-details .portfolio-info {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,30,99,0.15);
  padding: 30px;
}
.portfolio-details .portfolio-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.portfolio-details .portfolio-info ul { list-style: none; padding: 0; font-size: 15px; }
.portfolio-details .portfolio-info ul li { display: flex; flex-direction: column; padding-bottom: 15px; }
.portfolio-details .portfolio-description h2 { font-size: 26px; font-weight: 700; margin-bottom: 20px; }

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list a {
  display: flex; align-items: center; padding: 12px 15px;
  border-left: 3px solid rgba(233,30,99,0.2);
  margin-bottom: 5px; font-size: 16px; font-weight: 600;
  color: rgba(200,214,229,0.8);
  transition: 0.3s;
}
.service-details .services-list a.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.service-details .services-list a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {
  section, .section { scroll-margin-top: 66px; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero h1 { font-size: 36px; line-height: 44px; }
  .section-title h2 { font-size: 28px; }
  .section-title { padding-bottom: 40px; }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) {
  .hero { padding: 60px 0 40px 0; }
  .hero h1 { font-size: 32px; line-height: 40px; }
  .hero p { font-size: 18px; }
  .hero .hero-img { text-align: center; margin-top: 30px; }
  .hero .hero-img img { max-width: 80%; }

  .stats .stats-item { padding: 20px 10px; }
  .stats .stats-item .purecounter { font-size: 32px; }
  .stats .stats-item i { font-size: 36px; }

  .services .service-item { padding: 40px 20px; }

  .contact .info-item { margin-bottom: 20px; }
  .contact .php-email-form { padding: 20px; }

  .footer .footer-top { padding-bottom: 20px; }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
  section, .section { padding: 40px 0; }
  .section-title { padding-bottom: 30px; }
  .section-title h2 { font-size: 24px; }
  .section-title h2:before,
  .section-title h2:after { width: 30px; }

  .hero { min-height: auto; padding: 50px 0 30px 0; text-align: center; }
  .hero h1 { font-size: 28px; line-height: 36px; }
  .hero p { font-size: 16px; margin-bottom: 20px; }
  .hero .btn-get-started { padding: 8px 24px; font-size: 14px; }
  .hero .hero-img img { max-width: 70%; }

  .about .icon-box { padding: 20px; margin-bottom: 15px; }
  .about .icon-box i { font-size: 30px; }
  .about .icon-box h4 { font-size: 16px; }
  .about .content h3 { font-size: 14px; }

  .stats .stats-item { padding: 15px; text-align: center; }
  .stats .stats-item .purecounter { font-size: 28px; }
  .stats .stats-item i { font-size: 30px; }
  .stats .stats-item p { font-size: 14px; }

  .services .service-item { padding: 30px 20px; }
  .services .service-item .icon { width: 52px; height: 52px; font-size: 22px; }
  .services .service-item h3 { font-size: 18px; }

  .features .features-item { padding: 15px; }
  .features .features-item i { font-size: 26px; }
  .features .features-item h3 { font-size: 14px; }

  .portfolio .portfolio-filters li { padding: 6px 14px; font-size: 13px; margin: 0 2px 8px 2px; }

  .team .team-member .member-info { padding: 20px 10px; }
  .team .team-member .member-info h4 { font-size: 16px; }

  .contact .info-item { padding: 20px; flex-direction: column; text-align: center; }
  .contact .info-item i { margin: 0 0 15px 0; }
  .contact .php-email-form { padding: 20px; }
  .contact .php-email-form button[type=submit] { width: 100%; }

  .pricing .pricing-item { padding: 30px 15px; }
  .pricing .pricing-item h4 { font-size: 36px; }

  .alt-services .details { padding: 25px 20px; }

  .footer { padding: 30px 0 20px 0; }
  .footer .footer-top .footer-about,
  .footer .footer-top .footer-links { margin-bottom: 20px; }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575px) {
  .hero h1 { font-size: 24px; line-height: 32px; }
  .hero p { font-size: 15px; }

  .section-title h2 { font-size: 22px; }
  .section-title h2:before,
  .section-title h2:after { width: 20px; margin-left: 8px; margin-right: 8px; }

  .stats .stats-item .purecounter { font-size: 24px; }

  .portfolio .portfolio-filters li { padding: 5px 12px; font-size: 12px; }

  .pricing .pricing-item h4 { font-size: 30px; }
  .pricing .pricing-item h4 sup { font-size: 20px; }

  .contact .info-item i { width: 44px; height: 44px; font-size: 20px; }

  .page-title .heading h1 { font-size: 26px; }
}

/* Touch device optimizations */
@media (hover: none) {
  .services .service-item:hover,
  .about .icon-box:hover,
  .features .features-item:hover,
  .team .team-member:hover,
  .portfolio .portfolio-content:hover .portfolio-info { transition: none; }

  .portfolio .portfolio-content .portfolio-info { opacity: 1; background: rgba(26,10,16,0.6); }
  .team .team-member .social { bottom: 0; }
}

/* Ensure images are responsive */
img { max-width: 100%; height: auto; }

/* Fix overflow on small screens */
html { overflow-x: hidden; }
body { overflow-x: hidden; }
