/* ================================================
   FEATHER - White & Light Navy Theme
   ================================================ */

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

:root {
  --primary: #1a365d;
  --primary-dark: #1a2a4a;
  --secondary: #4a6fa5;
  --accent: #2c5282;
  --gold: #4a6fa5;
  --dark: #1e3a5f;
  --darker: #0f2744;
  --light: #e8eef5;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-lighter: #ffffff;
  --text-dark: #1a365d;
  --text-light: #4a6fa5;
  --glass: rgba(26, 54, 93, 0.1);
  --glass-border: rgba(26, 54, 93, 0.2);
  --shadow: 0 25px 50px -12px rgba(26, 54, 93, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-lighter);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}

/* ================================================
   ANIMATED BACKGROUND - Light Navy
   ================================================ */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(135deg, #e8eef5 0%, #d1dbe8 50%, #b8c5d6 100%);
}

.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(26, 54, 93, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74, 111, 165, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(44, 82, 130, 0.06) 0%, transparent 40%);
  animation: bgMove 20s ease-in-out infinite;
}

@keyframes bgMove {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1002;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(26, 54, 93, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 1px;
}

.logo-img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
}

.logo-text {
  color: var(--primary);
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: var(--primary);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover::after {
  width: 60%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown > a::after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: 5px;
  color: var(--text-dark);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 15px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  border-radius: 10px;
  margin: 5px 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
}

.dropdown-content a:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  cursor: pointer;
  z-index: 1005;
  padding: 10px;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* Feather menu icon */
.menu-btn .feather-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 5px;
}

.menu-btn .feather-icon span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-btn .feather-icon span:nth-child(1) {
  width: 20px;
}

.menu-btn .feather-icon span:nth-child(2) {
  width: 28px;
}

.menu-btn .feather-icon span:nth-child(3) {
  width: 20px;
}

.menu-btn:hover .feather-icon span {
  background: var(--secondary);
  transform: scaleX(1.1);
}

.menu-btn:active {
  transform: scale(0.9);
}

/* Active state - X mark */
.menu-btn.active .feather-icon span:nth-child(1) {
  width: 24px;
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--white);
}

.menu-btn.active .feather-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-btn.active .feather-icon span:nth-child(3) {
  width: 24px;
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--white);
}

nav.active .nav-links,
nav .nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(145deg, rgba(26, 41, 59, 0.98), rgba(15, 23, 42, 0.99));
  backdrop-filter: blur(20px);
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  z-index: 1001;
  padding-top: 80px;
  overflow-y: auto;
  overflow-x: hidden;
}

nav.active .nav-links li {
  width: 100%;
  text-align: center;
}

nav.active .nav-links li a {
  font-size: 1.1rem;
  padding: 14px 20px;
  color: #ffffff;
  display: block;
  width: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  margin: 2px 0;
  box-sizing: border-box;
}

nav.active .nav-links li a:hover,
nav.active .nav-links li a.active {
  background: var(--primary);
  color: #ffffff;
  transform: translateX(5px);
}

nav.active .dropdown-content {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  background: rgba(26, 41, 59, 0.98) !important;
  border: none !important;
  box-shadow: none !important;
  padding: 8px 10px !important;
  display: none !important;
  min-width: auto;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin-top: 5px;
  z-index: 1002;
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
}

nav.active .dropdown.open .dropdown-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

nav.active .dropdown > a::after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 8px;
}

nav.active .dropdown-content a {
  background: transparent !important;
  color: #ffffff !important;
  padding: 10px 15px !important;
  font-size: 1rem !important;
  border-radius: 6px !important;
  display: block !important;
  width: 100% !important;
  text-align: center;
}

nav.active .dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

nav.active .dropdown.open > a::after {
  content: '▲';
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 54, 93, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  isolation: isolate;
}

.logo-container {
  margin-bottom: 30px;
}

.small-floating-logo {
  width: 180px;
  height: auto;
  animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 30px rgba(26, 54, 93, 0.2));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes glow {
  0% { filter: drop-shadow(0 0 20px rgba(26, 54, 93, 0.1)); }
  100% { filter: drop-shadow(0 0 40px rgba(74, 111, 165, 0.2)); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.2;
}

.hero h1 span {
  color: var(--secondary);
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.floating-family {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  max-width: 40vw;
  animation: floatFamily 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(26, 54, 93, 0.15));
  z-index: 1;
}

.hero-left-image {
  display: block;
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  max-width: 30vw;
  animation: floatFamilyLeft 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(26, 54, 93, 0.15));
  z-index: 100;
}

@keyframes floatFamily {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(calc(-50% - 20px)) rotate(2deg); }
}

@keyframes floatFamilyLeft {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(calc(-50% + 20px)) rotate(-2deg); }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.explore-btn,
.freelancing-btn,
.order-btn {
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  position: relative;
  overflow: hidden;
}

.explore-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 54, 93, 0.4);
}

.freelancing-btn {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(74, 111, 165, 0.3);
}

.freelancing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(74, 111, 165, 0.4);
}

.order-btn {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(44, 82, 130, 0.3);
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(44, 82, 130, 0.4);
}

/* Circle Slider */
.circle-slider {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--glass-border);
  box-shadow: 0 0 40px rgba(26, 54, 93, 0.15);
  position: relative;
}

.circle-slider::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  z-index: -1;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circle-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s ease;
}

/* ================================================
   MODAL STYLING
   ================================================ */
.modal,
.contact-modal,
.details-modal,
.view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.5);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content,
.contact-content,
.view-modal-content,
.details-content {
  background: var(--white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  color: var(--text-dark);
  animation: modalIn 0.4s ease;
  box-shadow: var(--shadow);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close-btn,
.close-contact,
.close-view,
.close-details {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light);
}

.close-btn:hover,
.close-contact:hover {
  color: var(--white);
  background: var(--primary);
  transform: rotate(90deg);
}

.modal-content h2,
.contact-content h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary);
}

.services-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.services-list-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.services-list-2col li {
  margin: 0;
}

.services-list-icons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.services-list-icons li i {
  color: #4a90d9;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.services-list li {
  margin: 12px 0;
  padding: 15px 20px;
  background: var(--light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  font-weight: 500;
}

.services-list li:hover {
  transform: translateX(10px);
  background: var(--white);
  border-left-color: var(--secondary);
}

/* ================================================
   SOLUTIONS PAGES - Feature Cards
   ================================================ */
.feature-card,
.service-card,
.pricing-card,
.tech-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.feature-card:hover,
.service-card:hover,
.pricing-card:hover,
.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(74, 144, 217, 0.5);
}

.feature-icon,
.service-icon,
.tech-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a90d9, #2563eb);
  box-shadow: 0 8px 25px rgba(74, 144, 217, 0.4);
}

.feature-icon i,
.service-icon i,
.tech-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.feature-card h3,
.service-card h3,
.tech-card h3 {
  font-size: 1.4rem;
  color: #4a90d9;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p,
.service-card p,
.tech-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

.tech-list,
.pricing-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.tech-list li,
.pricing-features li {
  color: rgba(255,255,255,0.9);
  padding: 5px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tech-list li:last-child,
.pricing-features li:last-child {
  border-bottom: none;
}

.tech-list i,
.pricing-features i {
  color: #10b981;
  font-size: 0.7rem;
}

/* ================================================
   PRICING SECTION - Ultra Vibrant & Impressive
   ================================================ */
.pricing-section {
  position: relative;
  padding: 30px 20px;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  overflow: hidden;
  min-height: auto;
}

.pricing-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: #8b5cf6;
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.shape-2 {
  width: 180px;
  height: 180px;
  background: #4a90d9;
  bottom: -30px;
  right: -30px;
  animation-delay: -5s;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: #10b981;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
  75% {
    transform: translate(20px, 30px) rotate(3deg);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* ================================================
   PRICING CARDS - Ultimate Vibrant Style
   ================================================ */
.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: visible;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(99, 102, 241, 0.4), rgba(16, 185, 129, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-25px) scale(1.03);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 40px 100px rgba(139, 92, 246, 0.3);
}

.pricing-card.featured {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.3), rgba(6, 182, 212, 0.2));
  border-color: rgba(74, 144, 217, 0.5);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-25px);
  box-shadow: 0 50px 120px rgba(74, 144, 217, 0.4);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ef4444, #f59e0b);
  background-size: 200% 200%;
  animation: gradientShift 2s ease infinite;
  color: white;
  padding: 5px 15px;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 20;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pricing-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  animation: pulse 3s infinite ease-in-out;
}

.pricing-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: ripple 2s infinite;
}

.pricing-icon i {
  font-size: 1.4rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.pricing-card h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.pricing-icon::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: ripple 2s infinite;
}

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

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.pricing-card:nth-child(1) .pricing-icon {
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
}

.pricing-card:nth-child(2) .pricing-icon {
  background: linear-gradient(135deg, #4a90d9, #06b6d4);
  box-shadow: 0 15px 35px rgba(74, 144, 217, 0.5);
}

.pricing-card:nth-child(3) .pricing-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

.pricing-icon i {
  font-size: 2.2rem;
  color: white;
  text-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.pricing-card h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.pricing-price {
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-price .amount {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.pricing-price .timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.pricing-price .timeline i {
  color: #fbbf24;
  font-size: 0.75rem;
  animation: clockTick 2s infinite;
}
}

@keyframes clockTick {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  text-align: left;
}

.pricing-features li {
  color: rgba(255, 255, 255, 0.95);
  padding: 6px 0;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.pricing-features li i {
  color: #10b981;
  font-size: 0.65rem;
  background: rgba(16, 185, 129, 0.2);
  padding: 4px;
  border-radius: 50%;
}

.pricing-btn {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  width: 100%;
  box-sizing: border-box;
}

.pricing-features li {
  color: rgba(255, 255, 255, 0.95);
  padding: 5px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.pricing-features li:hover {
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #10b981;
  font-size: 1.4rem;
  background: rgba(16, 185, 129, 0.2);
  padding: 10px;
  border-radius: 50%;
  border: 2px solid #10b981;
}

.pricing-btn {
  display: inline-block;
  padding: 20px 55px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.pricing-btn::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;
}

.pricing-btn:hover::before {
  left: 100%;
}

.pricing-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(139, 92, 246, 0.6);
}

.pricing-card:nth-child(1) .pricing-btn {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.pricing-card:nth-child(1) .pricing-btn:hover {
  box-shadow: 0 25px 60px rgba(139, 92, 246, 0.6);
}

.pricing-card:nth-child(2) .pricing-btn {
  background: linear-gradient(135deg, #4a90d9, #06b6d4);
  box-shadow: 0 15px 40px rgba(74, 144, 217, 0.4);
}

.pricing-card:nth-child(2) .pricing-btn:hover {
  box-shadow: 0 25px 60px rgba(74, 144, 217, 0.6);
}

.pricing-card:nth-child(3) .pricing-btn {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.pricing-card:nth-child(3) .pricing-btn:hover {
  box-shadow: 0 25px 60px rgba(16, 185, 129, 0.6);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 50px 20px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    grid-column: span 1;
    transform: scale(1);
    margin: 30px 0;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-15px);
  }
  
  .pricing-card {
    padding: 40px 30px;
  }
  
  .pricing-icon {
    width: 90px;
    height: 90px;
  }
  
  .pricing-icon i {
    font-size: 2.2rem;
  }
  
  .pricing-card h3 {
    font-size: 1.8rem;
  }
  
  .pricing-price .amount {
    font-size: 2rem;
  }
  
  .shape {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 30px 20px;
  }
  
  .pricing-icon {
    width: 70px;
    height: 70px;
  }
  
  .pricing-icon i {
    font-size: 2rem;
  }
  
  .pricing-card h3 {
    font-size: 1.5rem;
  }
  
  .pricing-price .amount {
    font-size: 1.8rem;
  }
}

/* ================================================
   SERVICES SECTION - Clean (Non-Vibrant)
   ================================================ */
.services-clean-section {
  padding: 40px 20px;
  background: #f8fafc;
}

.solutions-row-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-category-clean {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.category-header-clean {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.category-header-clean i {
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 10px;
}

.it-solutions-clean .category-header-clean i {
  background: #4a90d9;
  color: white;
}

.general-solutions-clean .category-header-clean i {
  background: #10b981;
  color: white;
}

.category-header-clean h2 {
  font-size: 1.2rem;
  color: #1e293b;
  font-weight: 700;
}

.category-cards-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.compact-cards-clean .service-box-clean {
  padding: 10px 8px;
}

.service-box-clean {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-box-clean:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.service-box-clean i {
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: block;
}

.it-solutions-clean .service-box-clean i {
  color: #4a90d9;
}

.general-solutions-clean .service-box-clean i {
  color: #10b981;
}

.service-box-clean h4 {
  font-size: 0.8rem;
  color: #1e293b;
  margin-bottom: 2px;
  font-weight: 600;
}

.service-box-clean p {
  font-size: 0.6rem;
  color: #64748b;
}

@media (max-width: 800px) {
  .solutions-row-clean {
    grid-template-columns: 1fr;
  }
}

.sv-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.sv-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.sv-shape-1 {
  width: 200px;
  height: 200px;
  background: #4a90d9;
  top: -50px;
  left: 20%;
  opacity: 0.4;
}

.sv-shape-2 {
  width: 180px;
  height: 180px;
  background: #10b981;
  bottom: -30px;
  right: 20%;
  opacity: 0.4;
}

.solutions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.service-category {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.category-header i {
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 12px;
}

.it-solutions .category-header i {
  background: linear-gradient(135deg, #4a90d9, #8b5cf6);
  color: white;
  box-shadow: 0 5px 20px rgba(74, 144, 217, 0.4);
}

.general-solutions .category-header i {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.category-header h2 {
  font-size: 1.3rem;
  color: white;
  font-weight: 700;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.compact-cards {
  gap: 8px;
}

.compact-cards .service-box {
  padding: 12px 10px;
}

.compact-cards .service-box i {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.compact-cards .service-box h4 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.compact-cards .service-box p {
  font-size: 0.65rem;
}

.service-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.it-solutions .service-box:hover {
  border-color: #4a90d9;
  box-shadow: 0 10px 30px rgba(74, 144, 217, 0.3);
}

.general-solutions .service-box:hover {
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.service-box i {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.it-solutions .service-box i {
  color: #4a90d9;
}

.general-solutions .service-box i {
  color: #10b981;
}

.service-box h4 {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 4px;
  font-weight: 600;
}

.service-box p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

@media (max-width: 800px) {
  .solutions-row {
    grid-template-columns: 1fr;
  }
  
  .category-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solutions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.service-category {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.category-header i {
  font-size: 1.8rem;
  padding: 12px;
  border-radius: 50%;
}

.it-solutions .category-header i {
  background: linear-gradient(135deg, #4a90d9, #8b5cf6);
  color: white;
  box-shadow: 0 8px 25px rgba(74, 144, 217, 0.4);
}

.general-solutions .category-header i {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.category-header h2 {
  font-size: 1.4rem;
  color: #1e293b;
  font-weight: 700;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-box {
  background: white;
  border-radius: 15px;
  padding: 15px 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.it-solutions .service-box:hover {
  border-color: #4a90d9;
}

.general-solutions .service-box:hover {
  border-color: #10b981;
}

.service-box i {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: block;
}

.it-solutions .service-box i {
  color: #4a90d9;
}

.general-solutions .service-box i {
  color: #10b981;
}

.service-box h4 {
  font-size: 0.9rem;
  color: #1e293b;
  margin-bottom: 4px;
  font-weight: 600;
}

.service-box p {
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.4;
}

/* ================================================
   WHY CHOOSE US SECTION - Ultimate Vibrant
   ================================================ */
.why-choose-us-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a3e 50%, #24243e 100%);
  overflow: hidden;
}

.wcu-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.wcu-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: wcuFloat 15s infinite ease-in-out;
}

.wcu-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
  top: -100px;
  left: -50px;
}

.wcu-shape-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #4a90d9, #06b6d4);
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

.wcu-shape-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  opacity: 0.6;
}

@keyframes wcuFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -20px) scale(1.1); }
  50% { transform: translate(-15px, 15px) scale(0.95); }
  75% { transform: translate(15px, 20px) scale(1.05); }
}

.wcu-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.wcu-title {
  text-align: center;
  margin-bottom: 50px;
}

.wcu-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.5);
  animation: wcuPulse 2s infinite;
}

@keyframes wcuPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(245, 158, 11, 0.5); }
  50% { transform: scale(1.1); box-shadow: 0 15px 50px rgba(245, 158, 11, 0.7); }
}

.wcu-icon i {
  font-size: 2rem;
  color: white;
}

.wcu-title h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.wcu-title p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.wcu-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.wcu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(74, 144, 217, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wcu-card:hover::before {
  opacity: 1;
}

.wcu-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 25px 60px rgba(139, 92, 246, 0.3);
}

.wcu-card.featured {
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.3), rgba(6, 182, 212, 0.2));
  border-color: rgba(74, 144, 217, 0.5);
  transform: scale(1.05);
}

.wcu-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.featured-ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  padding: 5px 35px;
  font-size: 0.7rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 3px 15px rgba(245, 158, 11, 0.5);
}

.wcu-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  position: relative;
  z-index: 1;
}

.wcu-card:nth-child(2) .wcu-card-icon {
  background: linear-gradient(135deg, #4a90d9, #06b6d4);
  box-shadow: 0 10px 30px rgba(74, 144, 217, 0.4);
}

.wcu-card:nth-child(3) .wcu-card-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.wcu-card:nth-child(4) .wcu-card-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.wcu-card:nth-child(5) .wcu-card-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.wcu-card:nth-child(6) .wcu-card-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.wcu-card-icon i {
  font-size: 1.8rem;
  color: white;
}

.wcu-card h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.wcu-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.wcu-card-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
}

.wcu-card:hover .wcu-card-glow {
  opacity: 1;
  bottom: -30%;
}

@media (max-width: 900px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .wcu-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .wcu-grid {
    grid-template-columns: 1fr;
  }
  
  .wcu-card.featured {
    transform: scale(1);
  }
  
  .wcu-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .wcu-title h2 {
    font-size: 1.8rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title i {
  font-size: 1.5rem;
  color: #4a90d9;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: 1.5rem;
  color: #1e293b;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  background: white;
  border-radius: 18px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-card i {
  font-size: 2rem;
  color: #4a90d9;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 8px;
}

.about-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .solutions-row {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .category-cards {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   ABOUT US PAGE - Cards Style
   ================================================ */
.about-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border-color: rgba(74, 144, 217, 0.5);
}

.about-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a90d9, #2563eb);
  box-shadow: 0 10px 30px rgba(74, 144, 217, 0.4);
}

.about-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.about-card h3 {
  font-size: 1.8rem;
  color: #4a90d9;
  margin-bottom: 25px;
  font-weight: 600;
}

.about-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list li i {
  color: #4a90d9;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ================================================
   PRODUCTS SECTION
   ================================================ */
.products-hero {
  text-align: center;
  padding: 120px 20px 60px;
  background: var(--white);
}

.products-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.products-hero h1 span {
  color: var(--secondary);
}

.products-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg-light);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(26, 54, 93, 0.15);
  border-color: var(--primary);
}

.product-card:hover::before {
  opacity: 0.05;
}

.product-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.product-card {
  overflow: visible;
}

.product-image-zoom {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.product-image-zoom img {
  transition: transform 0.3s ease;
}

.product-image-zoom:hover img {
  transform: scale(1);
}

.product-image-zoom .zoom-lens {
  position: absolute;
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  display: none;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.product-image-zoom:hover .zoom-lens {
  display: block;
}

.product-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 15px 0 8px;
  position: relative;
  z-index: 1;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ================================================
   DETAILS SECTION
   ================================================ */
.details-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--bg-light);
}

.details-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.details-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  padding: 50px 35px;
  width: 350px;
  transition: all 0.4s ease;
}

.details-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(26, 54, 93, 0.1);
}

.details-card i {
  font-size: 60px;
  color: var(--primary);
  margin-bottom: 20px;
}

.details-card h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.details-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ================================================
   CLIENTS SECTION
   ================================================ */
.clients-section {
  text-align: center;
  padding: 100px 20px;
  background: var(--white);
}

.clients-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--primary);
}

.clients-carousel {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  padding: 30px;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* ================================================
   INSTAGRAM SECTION
   ================================================ */
.instagram-follow {
  padding: 50px 20px;
  text-align: center;
  background: #ffffff;
}

.insta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.insta-text {
  max-width: 400px;
  text-align: left;
}

.insta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.insta-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e1306c, #fd1d1d);
  padding: 16px 35px;
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
}

.insta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(225, 48, 108, 0.4);
}

.qr-box {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.qr-code {
  width: 600px;
  height: 600px;
  max-width: 90vw;
}

/* ================================================
   WORKS SECTION - Elastic/Stretch Layout
   ================================================ */
.works-page {
  overflow-x: hidden;
}

.works-section {
  text-align: center;
  padding: 120px 20px 60px;
  background: var(--white);
  min-height: 100vh;
}

.works-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.works-section h1 span {
  color: var(--secondary);
}

.works-section p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

.works-carousel {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: var(--white);
  padding: 30px 20px;
  overflow: visible;
}

.works-carousel .carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  animation: none;
}

.works-carousel .carousel-track img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.works-carousel .carousel-track img:hover {
  transform: scale(1.02);
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.work-item:hover {
  transform: scale(1.02);
}

.work-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.work-item:hover img {
  transform: scale(1.1);
}

/* ================================================
   VIDEO SECTIONS
   ================================================ */
.christmas-sale {
  text-align: center;
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 1200px;
  background: var(--bg-light);
  border-radius: 25px;
}

.sale-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.sale-video {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 2px solid var(--glass-border);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.works-section,
.works-carousel,
.product-gallery,
.clients-section {
  padding-bottom: 80px;
}

.footer span {
  color: var(--white);
  font-weight: 600;
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.whatsapp-float .tooltip {
  background: var(--primary);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float a svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.whatsapp-dropdown {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.whatsapp-float:hover .whatsapp-dropdown {
  display: flex;
}

.whatsapp-dropdown a {
  width: 55px;
  height: 55px;
  animation: none;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ================================================
   PRODUCT DETAILS MODAL
   ================================================ */
.view-more-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.view-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
}

/* ================================================
   CONTACT MODAL CONTENT
   ================================================ */
.contact-content p {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-content p:last-child {
  border-bottom: none;
}

.contact-content i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--white);
}

/* ================================================
   FORM STYLES - Contact Form
   ================================================ */
.form-container {
  background: rgba(15, 39, 68, 0.95);
  padding: 60px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  max-width: 1200px;
  margin: 120px auto 60px;
  min-height: auto;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.1);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(26, 54, 93, 0.8), 0 2px 4px rgba(0,0,0,0.3);
}

.form-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.form-left {
  flex: 1;
  max-width: 450px;
}

.form-right {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.form-right label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.form-container .form-left label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.form-container input,
.form-container textarea,
.form-container select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  background: rgba(26, 54, 93, 0.4);
  color: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.form-container input::placeholder,
.form-container textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.form-container input:focus,
.form-container textarea:focus,
.form-container select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(26, 54, 93, 0.5);
  box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.2);
  color: #ffffff;
}

/* Multi-select product dropdown */
.product-multi-select {
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  background: rgba(26, 54, 93, 0.4);
  color: #ffffff;
  min-height: 150px;
  max-height: 250px;
  overflow-y: auto;
  cursor: pointer;
}

.product-multi-select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(26, 54, 93, 0.5);
}

.select-hint {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: -10px;
  margin-bottom: 20px;
}

/* Product Checkboxes */
.product-checkbox-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(26, 54, 93, 0.3);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.product-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(26, 54, 93, 0.4);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.product-checkbox:hover {
  border-color: var(--primary);
  background: rgba(26, 54, 93, 0.6);
}

.product-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
  margin: 0;
}

.product-checkbox:has(input:checked) {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.form-container button,
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-container button:hover,
.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.success-message {
  display: none;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.error-message {
  display: none;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.validation-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 5px;
  margin-bottom: 15px;
  display: none;
}

/* ================================================
   MOBILE RESPONSIVE
   ================================================ */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .floating-family, .hero-left-image {
    display: none;
  }
  
  .products-hero h1,
  .clients-section h2,
  .works-section h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 15px;
    justify-content: space-between;
    z-index: 1004;
  }

  .menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1006;
  }

  header .logo {
    font-size: 1.2rem;
    margin: 0 auto;
  }

  header .logo-img {
    width: 40px;
  }
  
  nav .nav-links {
    display: none;
  }
  
  .hero {
    padding: 100px 15px 40px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }
  
  .explore-btn,
  .freelancing-btn,
  .order-btn {
    width: 100%;
    justify-content: center;
  }
  
  .circle-slider {
    width: 160px;
    height: 160px;
  }
  
  .products-hero {
    padding: 100px 15px 40px;
  }
  
  .products-hero h1 {
    font-size: 2rem;
  }
  
  .product-gallery {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }
  
  .product-card img {
    height: 180px;
  }
  
  .details-container {
    flex-direction: column;
    align-items: center;
  }
  
  .details-card {
    width: 100%;
    max-width: 350px;
  }
  
  .insta-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .insta-text {
    text-align: center;
  }
  
  .insta-text h2 {
    font-size: 2rem;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float a {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float a svg {
    width: 30px;
    height: 30px;
  }
  
  .modal-content,
  .contact-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .form-layout {
    flex-direction: column;
  }
  
  .form-container {
    max-width: 100%;
    padding: 30px 20px;
  }
  
  .works-carousel .carousel-track {
    grid-template-columns: 1fr;
  }
  
  .carousel-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-multi-select {
    min-height: 250px;
  }
  
  .footer {
    position: relative;
    bottom: auto;
  }
  
  .works-section,
  .product-gallery,
  .clients-section,
  .hero,
  .products-hero,
  .works-carousel {
    padding-bottom: 120px;
    margin-bottom: 0;
  }
}

/* ================================================
   SCROLLBAR STYLING
   ================================================ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
}
