/* CSS Variables for Light/Dark Mode */
:root {
  /* Light mode (default) */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --navbar-bg: #ffffff;
  --navbar-text: #0f172a;
  --accent-primary: #3b82f6;
  --accent-hover: #2563eb;
  --border-color: #e2e8f0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --card-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1e293b;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --navbar-bg: #020617;
  --navbar-text: #ffffff;
  --accent-primary: #38bdf8;
  --accent-hover: #60a5fa;
  --border-color: #334155;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --card-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.5s ease, color 0.8s ease;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--bg-card);
  transform: rotate(15deg);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* NAVBAR */
.navbar {
  background: var(--navbar-bg);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  position: relative;
  overflow: hidden;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-primary);
}

.nav-menu a:hover::before {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  opacity: 0.1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.15; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-secondary);
  animation: fadeInUp 1s ease 0.2s both;
}

/* BUTTONS */
.hero-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-primary);
  color: white;
  border: 2px solid var(--accent-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

.btn-secondary {
  border: 2px solid var(--accent-primary);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

/* SERVICES SECTION */
.services-preview {
  padding: 100px 0;
  background: var(--bg-secondary);
  transition: var(--transition);
  /* z-index: 1000; */
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  position: relative;
  display: inline-block;
  /* left: 50%; */
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: expandWidth 1s ease;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 80px; }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  animation: fadeInUp 1s ease;
  animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--accent-primary);
  font-size: 22px;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  padding: 70px 0 20px;
  margin-top: 100px;
  border-top: 1px solid var(--border-color);
  transition: var(--transition);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer h3, .footer h4 {
  color: var(--accent-primary);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer p, .footer li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  list-style: none;
  transition: var(--transition);
}

.footer li:hover {
  color: var(--accent-primary);
  transform: translateX(5px);
  cursor: pointer;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--navbar-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
    box-shadow: -5px 0 20px var(--shadow-color);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
  }

  .hero-btn {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .service-card {
    margin: 0 10px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    width: 95%;
  }

  .hero {
    padding: 80px 0;
  }

  .nav-menu {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer li:hover {
    transform: none;
  }
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Additional Styles for index.php */

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-primary);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-description {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-secondary);
}

/* Service Card Enhancements */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.card-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-primary);
    transition: var(--transition);
}

.service-card:hover .card-icon {
    transform: rotateY(180deg);
    background: var(--accent-primary);
}

.service-card:hover .card-icon svg {
    color: white;
    transform: rotateY(180deg);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-primary);
    text-decoration: none;
    margin-top: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.card-link:hover {
    gap: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: slideInLeft 0.6s ease;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.feature-icon svg {
    width: 25px;
    height: 25px;
    color: var(--accent-primary);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Why Image */
.image-wrapper {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-primary);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-placeholder {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-primary svg, .btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg, .btn-secondary:hover svg {
    transform: translateX(5px);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media screen and (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image {
        order: -1;
    }

    .experience-badge {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }
}

/* Highlight text */
.highlight {
    color: var(--accent-primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* About Page Styles */

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-header h1 span {
    color: var(--accent-primary);
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb .separator {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--accent-primary);
    font-weight: 500;
}

/* About Company Section */
.about-company {
    padding: 80px 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    animation: slideInLeft 0.6s ease;
}

.about-description {
    font-size: 18px;
    color: var(--text-primary);
    margin: 20px 0 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.about-feature {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

.about-feature .feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature .feature-icon svg {
    width: 25px;
    height: 25px;
    color: var(--accent-primary);
}

.about-feature h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description-full p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* About Image */
.about-image {
    position: relative;
}

.about-image .image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image .experience-badge {
    top: 0;
    right: 0;
}

.about-image .image-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: var(--bg-card);
}

/* Vision Mission Section */
.vision-mission {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.vision-card, .mission-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

.vision-card .card-icon, .mission-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.vision-card .card-icon svg, .mission-card .card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.vision-card h3, .mission-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.vision-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Mission List */
.mission-list {
    list-style: none;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 16px;
}

.mission-list li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.mission-list li span {
    line-height: 1.5;
}

/* Vision Decoration */
.vision-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 5px;
    padding: 20px;
    opacity: 0.1;
}

.vision-decoration span {
    width: 30px;
    height: 30px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.vision-decoration span:nth-child(2) {
    animation-delay: 0.3s;
}

.vision-decoration span:nth-child(3) {
    animation-delay: 0.6s;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.why-card:hover::before {
    opacity: 0.05;
}

.why-card .card-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.why-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-card:hover .card-icon {
    transform: rotateY(180deg);
    background: var(--accent-primary);
}

.why-card .card-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-primary);
    transition: var(--transition);
}

.why-card:hover .card-icon svg {
    color: white;
    transform: rotateY(180deg);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.why-card .card-number {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0.05;
    z-index: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-primary);
}

.team-image .image-placeholder svg {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-right {
    animation: slideInRight 0.6s ease forwards;
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 1;
}

.animate-scale {
    animation: scaleIn 0.6s ease forwards;
    opacity: 1;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }

    .page-header p {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-feature {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .about-feature .feature-icon {
        margin: 0;
    }

    .vision-card, .mission-card {
        padding: 30px 20px;
    }

    .vision-card h3, .mission-card h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .breadcrumb {
        font-size: 12px;
    }

    .mission-list li {
        font-size: 14px;
    }

    .why-card .card-number {
        font-size: 36px;
    }
}

/* Centered section header helper */
.section-header.centered {
    text-align: center;
}

.section-header.centered .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Services Page Styles */

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-tab {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.service-tab:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.service-tab.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* Service Cards Large */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large {
    background: var(--bg-card);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.service-card-large:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

.service-card-inner {
    padding: 40px;
}

/* Service Header */
.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    flex-wrap: wrap;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
    transition: var(--transition);
}

.service-card-large:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-bg {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--accent-primary);
    border-radius: 30px;
    opacity: 0.2;
    filter: blur(10px);
    z-index: 1;
}

.service-header h2 {
    font-size: 32px;
    color: var(--text-primary);
    flex: 1;
}

.service-badge {
    padding: 5px 15px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-badge.premium {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-badge.essential {
    background: linear-gradient(135deg, #10b981, #34d399);
}

/* Service Content */
.service-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.service-features h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.service-list li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* Tech Stack */
.service-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tech-tag {
    padding: 5px 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.tech-tag:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Service Footer */
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.service-price {
    text-align: right;
}

.price-label {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Service Packages */
.service-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.package-item {
    background: var(--bg-primary);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.package-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.package-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.package-price {
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 600;
}

/* Maintenance Plans */
.service-maintenance-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.plan-card {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.plan-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: var(--card-shadow);
}

.plan-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent-primary);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    transform: rotate(45deg);
}

.plan-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-card h5 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.plan-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.plan-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Why Choose Services */
.why-choose-services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: scaleIn 0.6s ease;
    animation-fill-mode: both;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-primary);
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: var(--bg-primary);
}

.cta-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    padding: 60px;
    border-radius: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.03;
    animation: rotate 20s linear infinite;
}

.cta-card h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Filter animation */
.service-card-large {
    transition: all 0.5s ease;
}

.service-card-large.hide {
    display: none;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-maintenance-plans {
        grid-template-columns: 1fr;
    }

    .service-packages {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .service-card-inner {
        padding: 30px 20px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-header h2 {
        font-size: 28px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .service-footer {
        flex-direction: column;
        text-align: center;
    }

    .service-price {
        text-align: center;
    }

    .cta-card {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .service-tab {
        width: 100%;
    }

    .service-header h2 {
        font-size: 24px;
    }

    .service-badge {
        width: 100%;
        text-align: center;
    }
}

/* Portfolio Page Styles */

/* Filter Tabs */
.portfolio-filter-section {
    padding: 40px 0 0;
    background: var(--bg-primary);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.filter-tab:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* Portfolio Grid */
.portfolio-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: scaleIn 0.6s ease;
    animation-fill-mode: both;
}

.portfolio-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

/* Portfolio Image */
.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-svg {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-svg {
    transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    margin-bottom: 10px;
}

.overlay-content h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.view-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.view-project:hover {
    gap: 15px;
    color: var(--accent-primary);
}

.view-project svg {
    transition: transform 0.3s ease;
}

.view-project:hover svg {
    transform: translateX(5px);
}

/* Portfolio Info */
.portfolio-info {
    padding: 25px;
    background: var(--bg-card);
}

.portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-info h3 {
    color: var(--accent-primary);
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Tech Badges */
.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    padding: 4px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 11px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.tech-badge:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Project Stats Section */
.project-stats {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: scaleIn 0.6s ease;
    animation-fill-mode: both;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-primary);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.testimonial-card:hover::before {
    opacity: 0.02;
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.testimonial-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-primary);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-primary);
}

.author-avatar svg {
    width: 100%;
    height: 100%;
}

.author-info h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Portfolio CTA */
.portfolio-cta {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Filter Animation */
.portfolio-card {
    transition: all 0.5s ease;
}

.portfolio-card.hide {
    display: none;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .portfolio-overlay {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .filter-tab {
        width: 100%;
        text-align: center;
    }

    .portfolio-info h3 {
        font-size: 18px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

/* Pricing Page Styles */

/* Billing Toggle Section */
.billing-toggle-section {
    padding: 40px 0 0;
    background: var(--bg-primary);
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.billing-label {
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.billing-label.active {
    color: var(--accent-primary);
}

.save-badge {
    background: var(--accent-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 10px;
    margin-left: 8px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--accent-primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: scaleIn 0.6s ease;
    animation-fill-mode: both;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

/* Popular Card */
.pricing-card.popular {
    border: 2px solid var(--accent-primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

.popular-badge svg {
    width: 16px;
    height: 16px;
}

/* Pricing Header */
.pricing-header {
    padding: 30px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 100%);
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-primary);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.plan-description {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Pricing Body */
.pricing-body {
    padding: 20px 30px;
    flex: 1;
}

.price-wrapper {
    text-align: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    vertical-align: top;
    margin-right: 5px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1.2;
}

.period {
    font-size: 14px;
    color: var(--text-muted);
}

.price-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.feature-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.feature-item.disabled {
    color: var(--text-muted);
    opacity: 0.6;
}

.feature-item.disabled svg {
    color: var(--text-muted);
}

/* Pricing Footer */
.pricing-footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
}

.money-back {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.faq-item:hover {
    border-color: var(--accent-primary);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    padding: 20px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 15px 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table .yes {
    color: #10b981;
    font-weight: 600;
}

.comparison-table .no {
    color: #ef4444;
    font-weight: 600;
}

/* Pricing CTA */
.pricing-cta {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto 0;
    }

    .pricing-card.popular {
        grid-column: auto;
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-15px);
    }

    .price {
        font-size: 36px;
    }

    .billing-toggle {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .popular-badge {
        top: 10px;
        right: 10px;
        padding: 4px 12px;
        font-size: 10px;
    }

    .plan-name {
        font-size: 22px;
    }

    .price {
        font-size: 32px;
    }

    .feature-item {
        font-size: 13px;
    }

    .faq-question h3 {
        font-size: 14px;
    }
}

/* Contact Page Styles */

/* Contact Info Cards */
.contact-cards {
    padding: 60px 0 0;
    background: var(--bg-primary);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: scaleIn 0.6s ease;
    animation-fill-mode: both;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent-primary);
}

.info-card h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.info-link:hover {
    gap: 10px;
}

.info-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Main Section */
.contact-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Styles */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    animation: slideInLeft 0.6s ease;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Contact Info Styles */
.contact-info-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    animation: slideInRight 0.6s ease;
}

.info-header {
    margin-bottom: 30px;
}

.info-header h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.info-header p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Details */
.contact-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent-primary);
}

.detail-text h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.detail-text a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.detail-text a:hover {
    color: var(--accent-primary);
}

.detail-text p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 3px;
}

.detail-text .emergency {
    font-size: 12px;
    color: var(--accent-primary);
    margin-top: 5px;
    font-style: italic;
}

/* Social Media */
.social-media {
    margin-bottom: 30px;
}

.social-media h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Map Container */
.map-container {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-placeholder {
    background: var(--bg-primary);
}

/* FAQ Mini Section */
.contact-faq {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.faq-mini-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.faq-mini-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

.faq-mini-card h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.faq-mini-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 60px 0 80px;
    background: var(--bg-primary);
}

/* Form Validation Styles */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
}

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInDown 0.3s ease;
}

.success-message svg {
    width: 20px;
    height: 20px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 992px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .faq-mini-grid {
        grid-template-columns: 1fr;
    }

    .form-header h2,
    .info-header h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .detail-item {
        flex-direction: column;
        text-align: center;
    }

    .detail-icon {
        margin: 0 auto;
    }

    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-links {
        justify-content: center;
    }
}