/* main.css - General Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #222;
    background: #f8fafc;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    /* IE6/7 support */
    zoom: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-weight: 600;
    line-height: 1.2;
    color: #1a202c;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }

p {
    margin: 0 0 20px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Links */
a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1e40af;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-header h3 {
    color: #718096;
    font-weight: 400;
    margin: 0;
}

/* Cards and Items */
.card, .service-item, .portfolio-item, .pricing-item, .contact-block {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.card:hover, .service-item:hover, .portfolio-item:hover, .pricing-item:hover, .contact-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Grid Layouts */
.services-grid, .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* --- Unique Modern Hero Section --- */
.hero-unique {
  position: relative;
  min-height: 480px;
  padding: 64px 0 48px 0;
  background: linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 4px 32px rgba(59,130,246,0.04);
  z-index: 1;
}

.hero-unique .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.hero-unique__bg-shape {
  position: absolute;
  top: -80px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 60% 40%, #3b82f6 0%, #ff006e 100%);
  opacity: 0.13;
  filter: blur(32px);
  z-index: 0;
}

.hero-unique__content {
  flex: 1 1 420px;
  max-width: 540px;
  padding-left: 48px;
  z-index: 2;
}
.hero-unique__content h1 {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.13;
  margin-bottom: 22px;
  color: #22223b;
  letter-spacing: -1.5px;
}
.hero-unique__highlight {
  color: #ff006e;
  background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-unique__gradient {
  color: #3b82f6;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-unique__content p {
  font-size: 1.18rem;
  color: #475569;
  margin-bottom: 36px;
  font-weight: 500;
}
.btn-unique {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 38px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(59,130,246,0.10);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  letter-spacing: 0.5px;
  gap: 8px;
}
.btn-unique:hover {
  background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
  box-shadow: 0 4px 24px rgba(255,0,110,0.12);
  transform: translateY(-2px) scale(1.04);
}
.hero-unique__image-card {
  flex: 1 1 700px;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-width: 350px;
}
.hero-unique__image-glass {
  background: rgba(255,255,255,0.7);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.13), 0 1.5px 6px rgba(255,0,110,0.08);
  backdrop-filter: blur(8px);
  padding: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  min-width: 350px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-unique__image-glass img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  background: #e2e8f0;
  box-shadow: 0 2px 12px rgba(59,130,246,0.10);
}
.hero-unique__image-accent {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 40% 60%, #ff006e 0%, #3b82f6 100%);
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-unique {
    padding: 32px 0 24px 0;
    border-radius: 0 0 20px 20px;
  }
  .hero-unique .container {
    flex-direction: column;
    gap: 24px;
  }
  .hero-unique__content, .hero-unique__image-card {
    max-width: 100%;
    flex: 1 1 100%;
    padding-left: 0;
  }
  .hero-unique__image-card,
  .hero-unique__image-glass {
    max-width: 100%;
    min-width: 0;
    height: 180px;
  }
  .hero-unique__image-glass img {
    height: 180px;
    max-width: 100%;
    border-radius: 16px;
  }
}

/* Services Section */
.services {
    background: #fff;
    padding: 80px 0;
}

.service-item {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-item h3 {
    margin-bottom: 15px;
    color: #1a202c;
}

.service-item p {
    color: #718096;
    margin-bottom: 0;
}

/* --- Modern Services Section --- */
.services-modern {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  overflow: hidden;
}

.services-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.services-bg-shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 70%, #3b82f6 0%, #ff006e 100%);
  opacity: 0.08;
  filter: blur(40px);
  border-radius: 50%;
}

.services-bg-shape-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 70% 30%, #ff006e 0%, #3b82f6 100%);
  opacity: 0.06;
  filter: blur(50px);
  border-radius: 50%;
}

.services-bg-shape-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 50% 50%, #3b82f6 0%, #ff006e 100%);
  opacity: 0.04;
  filter: blur(30px);
  border-radius: 50%;
}

.services-modern .container {
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.services-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a202c;
  letter-spacing: -1px;
}

.services-title-highlight {
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card-modern {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.service-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-modern:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-modern:hover .service-card-overlay {
  opacity: 1;
}

.service-card-content {
  padding: 32px;
  position: relative;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6 0%, #ff006e 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease;
}

.service-card-modern:hover .service-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1rem;
}

.service-card-features {
  margin-bottom: 32px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
}

.service-feature-item svg {
  color: #3b82f6;
  margin-right: 12px;
  flex-shrink: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 8px;
}

.service-card-link:hover {
  color: #ff006e;
  transform: translateX(4px);
}

.service-card-link svg {
  transition: transform 0.3s ease;
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
  .services-modern {
    padding: 60px 0;
  }
  
  .services-header {
    margin-bottom: 50px;
  }
  
  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  
  .service-card-content {
    padding: 24px;
  }
  
  .service-card-image {
    height: 160px;
  }
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #fff;
    margin-bottom: 20px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* --- Modern About Section --- */
.about-modern {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  overflow: hidden;
}

.about-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.about-bg-shape-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at 70% 30%, #ff006e 0%, #3b82f6 100%);
  opacity: 0.08;
  filter: blur(35px);
  border-radius: 50%;
}

.about-bg-shape-2 {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at 30% 70%, #3b82f6 0%, #ff006e 100%);
  opacity: 0.06;
  filter: blur(45px);
  border-radius: 50%;
}

.about-bg-shape-3 {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 50% 50%, #ff006e 0%, #3b82f6 100%);
  opacity: 0.05;
  filter: blur(25px);
  border-radius: 50%;
}

.about-modern .container {
  position: relative;
  z-index: 2;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-header-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.2);
}

.about-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a202c;
  letter-spacing: -1px;
}

.about-title-highlight {
  background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.about-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Flip Card Styles */
.about-flip-container {
  perspective: 1000px;
  height: 500px;
}

.about-flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-flip-card:hover {
  transform: rotateY(180deg);
}

.about-flip-front,
.about-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-flip-front {
  background: #fff;
}

.about-flip-back {
  background: linear-gradient(135deg, #3b82f6 0%, #ff006e 100%);
  transform: rotateY(180deg);
  color: #fff;
}

.about-flip-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-flip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-flip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(255, 0, 110, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-flip-card:hover .about-flip-overlay {
  opacity: 1;
}

.about-flip-overlay-content {
  text-align: center;
  color: #fff;
}

.about-flip-overlay-content svg {
  margin-bottom: 16px;
  opacity: 0.9;
}

.about-flip-overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
}

.about-flip-back-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-flip-back-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.about-flip-back-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.about-flip-stat {
  text-align: center;
}

.flip-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.flip-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

/* Content Side */
.about-content-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-content-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content-section p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-features-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #ff006e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.about-feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}

.about-feature-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.about-cta {
  margin-top: 20px;
}

.btn-about-modern {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
  gap: 12px;
}

.btn-about-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
  background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
}

.btn-about-modern svg {
  transition: transform 0.3s ease;
}

.btn-about-modern:hover svg {
  transform: translateX(4px);
}

/* Responsive Design for About */
@media (max-width: 1024px) {
  .about-content-modern {
    gap: 60px;
  }
  
  .about-features-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-modern {
    padding: 60px 0;
  }
  
  .about-header {
    margin-bottom: 50px;
  }
  
  .about-content-modern {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-flip-container {
    display: none; /* Hide flip card on mobile */
  }
  
  .about-content-text {
    gap: 30px;
  }
  
  .about-content-section h3 {
    font-size: 1.8rem;
  }
  
  .about-features-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-feature-item {
    gap: 12px;
  }
  
  .about-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .about-feature-content h4 {
    font-size: 1rem;
  }
  
  .about-feature-content p {
    font-size: 0.9rem;
  }
}

/* Portfolio Section */
.portfolio {
    background: #fff;
    padding: 80px 0;
}

.portfolio-item {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item h3 {
    margin-bottom: 10px;
}

/* --- Modern Portfolio Section --- */
.portfolio-modern {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.portfolio-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.portfolio-bg-shape-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.portfolio-bg-shape-2 {
  position: absolute;
  top: 60%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, rgba(255, 0, 110, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 30px;
  animation: float 8s ease-in-out infinite reverse;
}

.portfolio-bg-shape-3 {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
  border-radius: 20px;
  animation: float 7s ease-in-out infinite;
}

.portfolio-modern .container {
  position: relative;
  z-index: 2;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-header-badge {
  display: inline-block;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.portfolio-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a202c;
  line-height: 1.2;
}

.portfolio-title-highlight {
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.portfolio-filter-btn {
  position: relative;
  background: #fff;
  color: #64748b;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.portfolio-filter-btn:hover::before,
.portfolio-filter-btn.active::before {
  opacity: 1;
}

.portfolio-filter-btn .filter-count {
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.portfolio-filter-btn:hover .filter-count,
.portfolio-filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.3);
}

.portfolio-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.portfolio-card-modern {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.portfolio-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card-modern:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: 30px;
  background: #fff;
}

.portfolio-card-category {
  display: inline-block;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.portfolio-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a202c;
  line-height: 1.3;
}

.portfolio-card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #64748b;
}

.portfolio-card-tech {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tech-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

/* Portfolio Card Actions */
.portfolio-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.portfolio-card-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 25px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  min-width: 120px;
  justify-content: center;
}

.portfolio-card-link:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.portfolio-card-link.secondary {
  background: #fff;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.portfolio-card-link.secondary:hover {
  background: #64748b;
  color: #fff;
  border-color: #64748b;
}

.portfolio-card-link svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.portfolio-card-link:hover svg {
  transform: translateX(2px);
}

/* Portfolio CTA */
.portfolio-cta {
  text-align: center;
}

.btn-portfolio-modern {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
  gap: 12px;
}

.btn-portfolio-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
  background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
}

.btn-portfolio-modern svg {
  transition: transform 0.3s ease;
}

.btn-portfolio-modern:hover svg {
  transform: translateX(4px);
}

/* Responsive Design for Portfolio */
@media (max-width: 1024px) {
  .portfolio-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }
  
  .portfolio-filters {
    gap: 12px;
  }
  
  .portfolio-filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .portfolio-card-actions {
    gap: 8px;
  }
  
  .portfolio-card-link {
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  .portfolio-modern {
    padding: 60px 0;
  }
  
  .portfolio-header {
    margin-bottom: 40px;
  }
  
  .portfolio-filters {
    gap: 8px;
  }
  
  .portfolio-filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .portfolio-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-card-modern {
    margin-bottom: 0;
  }
  
  .portfolio-card-content {
    padding: 24px;
  }
  
  .portfolio-card-content h3 {
    font-size: 1.3rem;
  }
  
  .portfolio-card-content p {
    font-size: 0.9rem;
  }
  
  .tech-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  
  .portfolio-card-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .portfolio-card-link {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }
}

/* Contact Section */
.contact {
    background: #f8fafc;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form button {
    width: 100%;
}

/* Footer */
#site-footer {
    background: #1a202c;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp { animation: fadeInUp 0.9s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.9s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.9s ease forwards; }

/* WordPress Admin Bar Adjustment */
.admin-bar .custom-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .custom-header {
        top: 46px;
    }
}

.admin-bar body {
    padding-top: 32px;
}

@media (max-width: 782px) {
    .admin-bar body {
        padding-top: 46px;
    }
}

/* --- Modern Pricing Section --- */
.pricing-modern {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  overflow: hidden;
}

.pricing-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.pricing-bg-shape-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at 30% 70%, #3b82f6 0%, #ff006e 100%);
  opacity: 0.08;
  filter: blur(35px);
  border-radius: 50%;
}

.pricing-bg-shape-2 {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at 70% 30%, #ff006e 0%, #3b82f6 100%);
  opacity: 0.06;
  filter: blur(45px);
  border-radius: 50%;
}

.pricing-bg-shape-3 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 50% 50%, #3b82f6 0%, #ff006e 100%);
  opacity: 0.05;
  filter: blur(25px);
  border-radius: 50%;
}

.pricing-modern .container {
  position: relative;
  z-index: 2;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.pricing-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a202c;
  letter-spacing: -1px;
}

.pricing-title-highlight {
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Pricing Toggle */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.toggle-label {
  font-weight: 600;
  color: #64748b;
  font-size: 0.95rem;
}

.toggle-switch {
  position: relative;
}

.toggle-input {
  display: none;
}

.toggle-label-switch {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 50px;
  padding: 4px;
  cursor: pointer;
  position: relative;
  width: 200px;
  height: 40px;
}

.toggle-option {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #64748b;
  transition: color 0.3s ease;
  z-index: 2;
  position: relative;
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 96px;
  height: 32px;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  border-radius: 50px;
  transition: transform 0.3s ease;
  z-index: 1;
}

.toggle-input:checked + .toggle-label-switch .toggle-slider {
  transform: translateX(96px);
}

.toggle-input:checked + .toggle-label-switch .toggle-option:first-child {
  color: #64748b;
}

.toggle-input:checked + .toggle-label-switch .toggle-option:last-child {
  color: #fff;
}

.toggle-input:not(:checked) + .toggle-label-switch .toggle-option:first-child {
  color: #fff;
}

.toggle-input:not(:checked) + .toggle-label-switch .toggle-option:last-child {
  color: #64748b;
}

.save-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(255, 0, 110, 0.2);
}

.save-icon {
  font-size: 1rem;
}

/* Pricing Grid */
.pricing-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.pricing-card-modern {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.pricing-card-modern.featured {
  background: linear-gradient(135deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  transform: scale(1.05);
  border: none;
}

.pricing-card-modern.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card-badge-featured {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-card-badge {
  display: inline-block;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pricing-card-modern.featured .pricing-card-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.pricing-card-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a202c;
}

.pricing-card-modern.featured .pricing-card-header h3 {
  color: #fff;
}

.pricing-card-header p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-card-modern.featured .pricing-card-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* Pricing Price */
.pricing-card-price {
  text-align: center;
  margin-bottom: 32px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #64748b;
}

.pricing-card-modern.featured .currency {
  color: rgba(255, 255, 255, 0.8);
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a202c;
  line-height: 1;
}

.pricing-card-modern.featured .amount {
  color: #fff;
}

.period {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.pricing-card-modern.featured .period {
  color: rgba(255, 255, 255, 0.8);
}

.price-original {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.pricing-card-modern.featured .price-original {
  color: rgba(255, 255, 255, 0.6);
}

/* Pricing Features */
.pricing-card-features {
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #475569;
  font-size: 0.95rem;
}

.pricing-card-modern.featured .feature-item {
  color: rgba(255, 255, 255, 0.9);
}

.feature-item svg {
  color: #3b82f6;
  flex-shrink: 0;
}

.pricing-card-modern.featured .feature-item svg {
  color: #fff;
}

/* Pricing CTA */
.pricing-card-cta {
  text-align: center;
}

.btn-pricing-modern {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.btn-pricing-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
  background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
}

.btn-pricing-modern:active {
  transform: translateY(0);
}

.btn-pricing-modern svg {
  transition: transform 0.3s ease;
}

.btn-pricing-modern:hover svg {
  transform: translateX(4px);
}

/* Pricing Footer */
.pricing-footer {
  text-align: center;
  margin-top: 40px;
}

.pricing-footer p {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 16px;
}

.pricing-footer-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pricing-footer-link:hover {
  color: #ff006e;
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
  .pricing-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  
  .pricing-toggle {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  
  .toggle-label-switch {
    width: 180px;
  }
  
  .toggle-slider {
    width: 86px;
  }
  
  .toggle-input:checked + .toggle-label-switch .toggle-slider {
    transform: translateX(86px);
  }
}

@media (max-width: 768px) {
  .pricing-modern {
    padding: 60px 0;
  }
  
  .pricing-header {
    margin-bottom: 40px;
  }
  
  .pricing-toggle-container {
    margin-bottom: 40px;
  }
  
  .pricing-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card-modern {
    padding: 30px;
  }
  
  .pricing-card-modern.featured {
    transform: scale(1);
  }
  
  .pricing-card-modern.featured:hover {
    transform: translateY(-8px);
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .toggle-label-switch {
    width: 160px;
    height: 36px;
  }
  
  .toggle-slider {
    width: 76px;
    height: 28px;
  }
  
  .toggle-input:checked + .toggle-label-switch .toggle-slider {
    transform: translateX(76px);
  }
}

/* --- Modern Contact Section --- */
.contact-modern {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
}

.contact-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.contact-bg-shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 70%, #3b82f6 0%, #ff006e 100%);
  opacity: 0.1;
  filter: blur(40px);
  border-radius: 50%;
}

.contact-bg-shape-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 70% 30%, #ff006e 0%, #3b82f6 100%);
  opacity: 0.08;
  filter: blur(50px);
  border-radius: 50%;
}

.contact-bg-shape-3 {
  position: absolute;
  top: 40%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 50% 50%, #3b82f6 0%, #ff006e 100%);
  opacity: 0.06;
  filter: blur(30px);
  border-radius: 50%;
}

.contact-modern .container {
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-header-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.contact-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -1px;
}

.contact-title-highlight {
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Contact Content Layout */
.contact-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Contact Info Section */
.contact-info-modern {
  padding-right: 40px;
}

.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.contact-info-header p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-method:hover::before {
  transform: scaleX(1);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.contact-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #ff006e 100%);
  border-radius: 12px;
  flex-shrink: 0;
  color: #fff;
}

.contact-method-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.contact-method-content p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.contact-method-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method-link:hover {
  color: #ff006e;
  transform: translateX(4px);
}

.contact-method-link svg {
  transition: transform 0.3s ease;
}

.contact-method-link:hover svg {
  transform: translateX(2px);
}

/* Social Links */
.contact-social {
  margin-top: 40px;
}

.contact-social h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
}

/* Contact Form Section */
.contact-form-modern {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.form-header p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
}

/* Modern Form Styles */
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group:has(.full-width) {
  grid-template-columns: 1fr;
}

.input-wrapper {
  position: relative;
}

.input-wrapper.full-width {
  grid-column: 1 / -1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: transparent;
}

.input-wrapper label {
  position: absolute;
  top: 16px;
  left: 20px;
  color: #94a3b8;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper select:focus + label,
.input-wrapper select:not([value=""]) + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 16px;
  font-size: 0.8rem;
  color: #3b82f6;
  background: rgba(15, 23, 42, 0.9);
  padding: 0 8px;
  border-radius: 4px;
}

.input-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 48px;
  color: #fff;
}

.input-wrapper select option {
  background: #1e293b;
  color: #fff;
  padding: 12px;
}

.input-wrapper select:invalid {
  color: #94a3b8;
}

.input-wrapper select:valid {
  color: #fff;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.btn-submit-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #3b82f6 0%, #ff006e 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  width: 100%;
  grid-column: 1 / -1;
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
  background: linear-gradient(90deg, #ff006e 0%, #3b82f6 100%);
}

.btn-submit-modern:active {
  transform: translateY(0);
}

.btn-submit-modern svg {
  transition: transform 0.3s ease;
}

.btn-submit-modern:hover svg {
  transform: translateX(4px);
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
  .contact-content-modern {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-info-modern {
    padding-right: 0;
  }
  
  .contact-form-modern {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .contact-modern {
    padding: 60px 0;
  }
  
  .contact-header {
    margin-bottom: 60px;
  }
  
  .contact-content-modern {
    gap: 40px;
  }
  
  .contact-methods {
    gap: 24px;
  }
  
  .contact-method {
    padding: 20px;
  }
  
  .form-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form-modern {
    padding: 24px;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 44px;
    height: 44px;
  }
}

/* Contact Form Messages */
.contact-form-message {
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
  backdrop-filter: blur(10px);
  border: 1px solid;
}

.contact-form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}

.contact-form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

/* Form Validation Styles */
.modern-form input.error,
.modern-form textarea.error,
.modern-form select.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.field-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 8px;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(-10px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Submit Button Loading State */
.btn-submit-modern:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-submit-modern:disabled:hover {
  transform: none !important;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3) !important;
}

/* Highlight active menu item */
.nav-list .current-menu-item > a,
.nav-list .current_page_item > a,
.nav-list .current-menu-ancestor > a {
    color: #2563eb;
    font-weight: bold;
    background: #f0f4ff;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    padding: 10px 22px;
    transition: background 0.2s, color 0.2s;
}

.nav-list li > a {
    transition: background 0.2s, color 0.2s;
}

.nav-list .current-menu-item > a:hover,
.nav-list .current_page_item > a:hover,
.nav-list .current-menu-ancestor > a:hover {
    background: #2563eb;
    color: #fff;
}



