


/* Sitemap Styles */
.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sitemap-section {
    background: rgba(15, 35, 32, 0.5);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.sitemap-section h2 {
    color: #5eead4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sitemap-section ul {
    list-style: none;
    padding: 0;
}

.sitemap-section li {
    margin-bottom: 0.5rem;
}

.sitemap-section a {
    color: #a7c5c0;
    text-decoration: none;
    transition: color 0.3s;
}

.sitemap-section a:hover {
    color: #5eead4;
}

/* Admin meta box styling */
#appstomic_seo_meta input,
#appstomic_seo_meta textarea {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#appstomic_seo_meta .description {
    color: #666;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}
/* ============================================
   THEME: DARK EMERALD + AMBER ACCENTS
   MOBILE-FIRST RESPONSIVE DESIGN
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a1212 0%, #061010 100%);
  color: #e8f0ed;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Mobile-friendly animated background */
.bg-aurora {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.aurora-1 {
  position: absolute;
  width: 150vmax;
  height: 150vmax;
  top: -40%;
  right: -30%;
  background: radial-gradient(circle, rgba(20, 180, 160, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float1 25s ease-in-out infinite;
}

.aurora-2 {
  position: absolute;
  width: 120vmax;
  height: 120vmax;
  bottom: -30%;
  left: -20%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float2 30s ease-in-out infinite;
}

.aurora-3 {
  position: absolute;
  width: 100vmax;
  height: 100vmax;
  top: 50%;
  left: 40%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(70px);
  animation: float3 22s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, -3%) scale(1.05); }
  66% { transform: translate(-3%, 5%) scale(0.98); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-4%, 4%) scale(1.03); }
  66% { transform: translate(5%, -2%) scale(0.97); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -5%) scale(1.08); }
}

.grid-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(20, 180, 160, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 180, 160, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

/* Mobile-first container */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .container {
    padding: 1.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 1.5rem 2.5rem;
  }
}

/* Header - Mobile Optimized */
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.3rem 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.logo-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ccfbf1 0%, #fde68a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .logo-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
  }
  .logo-icon i {
    font-size: 2rem;
  }
  .logo-text {
    font-size: 2.3rem;
  }
}

/* Top Navigation Menu Styles */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #e8f0ed;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: block;
}

.nav-menu a:hover {
  color: #5eead4;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 30, 28, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  border: 1px solid rgba(13, 148, 136, 0.2);
  z-index: 1000;
}

.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.nav-menu .sub-menu li {
  width: 100%;
}

.nav-menu .sub-menu a {
  padding: 0.5rem 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #5eead4;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 999;
}

@media (max-width: 768px) {
  .main-nav {
    position: relative;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #0a1212;
    flex-direction: column;
    padding: 80px 2rem 2rem;
    transition: right 0.3s;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding-left: 1rem;
    box-shadow: none;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
}

/* Language Switch */
.lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(20, 40, 35, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3px 4px;
  border-radius: 40px;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 7px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 40px;
  color: #9cb8b3;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
  .lang-btn {
    padding: 10px 24px;
    font-size: 1rem;
  }
}

.lang-btn.active {
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

/* Hero Section */
.hero {
  margin: 1.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero {
    margin: 3rem 0 5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 148, 136, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px solid rgba(13, 148, 136, 0.3);
  margin-bottom: 1.2rem;
  color: #5eead4;
}

@media (min-width: 768px) {
  .badge {
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
}

h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.2rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4.2rem;
    margin-bottom: 1.8rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #5eead4 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1rem;
  color: #a7c5c0;
  margin-bottom: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.2rem;
    max-width: 550px;
    margin-bottom: 2.5rem;
  }
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.btn-primary, .btn-outline {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

@media (min-width: 480px) {
  .btn-primary, .btn-outline {
    width: auto;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: 60px;
  font-weight: 700;
  border: none;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary i { 
  font-size: 1.1rem; 
}

.btn-outline {
  background: transparent;
  color: #ccfbf1;
  padding: 0.9rem 1.8rem;
  border-radius: 60px;
  font-weight: 600;
  border: 1.5px solid rgba(13, 148, 136, 0.4);
  backdrop-filter: blur(10px);
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(13, 148, 136, 0.4);
}

.btn-outline:hover {
  border-color: #0d9488;
  background: rgba(13, 148, 136, 0.1);
}

@media (min-width: 768px) {
  .btn-primary, .btn-outline {
    padding: 1.1rem 2.6rem;
    font-size: 1.1rem;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 0.2rem;
}

.stat-item span {
  color: #9cb8b3;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .stat-item h3 {
    font-size: 2.5rem;
  }
}

/* Hero Visual */
.hero-visual {
  background: rgba(10, 30, 28, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 1.5rem 1.2rem;
  border: 1px solid rgba(13, 148, 136, 0.2);
  box-shadow: 0 30px 50px -20px #00000080;
}

@media (min-width: 768px) {
  .hero-visual {
    border-radius: 40px;
    padding: 2.5rem 2rem;
  }
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-pill {
  background: rgba(20, 50, 45, 0.5);
  border-radius: 60px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(13, 148, 136, 0.2);
  font-weight: 500;
  font-size: 0.85rem;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.service-pill:hover {
  border-color: #0d9488;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .service-pill {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.service-pill i {
  color: #fbbf24;
  font-size: 1rem;
  width: 20px;
}

/* Development Images Section */
.dev-showcase {
  margin-top: 1.5rem;
}

.dev-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.dev-image-card {
  background: linear-gradient(135deg, #0d948820, #06b6d420);
  border-radius: 16px;
  padding: 1rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(13, 148, 136, 0.2);
  transition: transform 0.3s;
}

.dev-image-card:hover {
  transform: translateY(-5px);
  border-color: #0d9488;
}

.dev-image-card i {
  font-size: 2rem;
  color: #5eead4;
  margin-bottom: 0.5rem;
}

.dev-image-card span {
  display: block;
  font-size: 0.7rem;
  color: #9cb8b3;
}

.code-snippet {
  background: #0a1a18;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(13, 148, 136, 0.3);
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.7rem;
  color: #5eead4;
  overflow-x: auto;
  white-space: pre;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .dev-image-card i {
    font-size: 2.5rem;
  }
  .dev-image-card span {
    font-size: 0.85rem;
  }
  .code-snippet {
    font-size: 0.85rem;
    padding: 1.2rem;
  }
}

/* Section Titles */
.section-subtitle {
  color: #5eead4;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin: 4rem 0 2rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.8rem;
    margin: 6rem 0 2.5rem;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background: rgba(15, 35, 32, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.8rem 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(13, 148, 136, 0.15);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2.5rem 2rem;
    border-radius: 36px;
  }
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(20, 50, 45, 0.6);
  border-color: rgba(13, 148, 136, 0.4);
}

.card-dev-image {
  width: 100%;
  height: 100px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #0d948830, #06b6d430);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  position: relative;
  overflow: hidden;
}

.card-dev-image i {
  font-size: 2rem;
  color: #5eead4;
  opacity: 0.8;
}

.tech-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #0d9488;
  color: white;
  font-size: 0.6rem;
  padding: 3px 8px;
  border-radius: 20px;
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

.service-card p {
  color: #b5d2cc;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .service-card p {
    font-size: 1rem;
  }
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: rgba(13, 148, 136, 0.15);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.7rem;
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: #ccfbf1;
}

@media (min-width: 768px) {
  .tag {
    padding: 6px 16px;
    font-size: 0.85rem;
  }
}

/* Tools Showcase */
.tools-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.tool-item {
  text-align: center;
}

.tool-item i {
  font-size: 2.5rem;
  color: #5eead4;
  margin-bottom: 0.3rem;
}

.tool-item span {
  display: block;
  font-size: 0.8rem;
  color: #9cb8b3;
}

/* SEO Stats Grid */
.seo-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 480px) {
  .seo-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .seo-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
  }
}

.seo-stat-card {
  background: rgba(15, 40, 36, 0.6);
  backdrop-filter: blur(15px);
  padding: 1.5rem 1rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: rgba(13, 148, 136, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 1.5rem;
  color: #fbbf24;
}

.seo-stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5eead4, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.3rem;
}

.seo-stat-card p {
  color: #9cb8b3;
  font-size: 0.85rem;
}

/* Process Timeline */
.seo-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 480px) {
  .seo-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .seo-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
  }
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(20, 45, 40, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.step-image {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #0d948820, #fbbf2420);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 148, 136, 0.3);
}

.step-image i {
  font-size: 1.8rem;
  color: #5eead4;
}

.step-number {
  width: 35px;
  height: 35px;
  background: #0d9488;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -18px auto 0.8rem;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #1a3a35;
  color: white;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ccfbf1;
}

.process-step p {
  color: #9cb8b3;
  font-size: 0.8rem;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.faq-item {
  background: rgba(20, 45, 40, 0.4);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(13, 148, 136, 0.15);
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

@media (min-width: 480px) {
  .faq-item {
    flex-direction: row;
    padding: 1.8rem;
  }
}

.faq-image {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0d948830, #06b6d430);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-image i {
  font-size: 1.5rem;
  color: #fbbf24;
}

.faq-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ccfbf1;
}

.faq-content p {
  color: #a7c5c0;
  font-size: 0.9rem;
}

/* Testimonials */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .feature-split {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 5rem 0 3rem;
  }
}

.testimonial-card {
  background: rgba(15, 35, 32, 0.6);
  backdrop-filter: blur(15px);
  padding: 1.8rem;
  border-radius: 28px;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fbbf24;
}

.avatar i {
  font-size: 1.5rem;
  color: #fff;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonial-info p {
  color: #5eead4;
  font-size: 0.8rem;
}

.testimonial-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rating {
  color: #fbbf24;
  letter-spacing: 3px;
  font-size: 1rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0d948820, #06b6d420);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  margin: 2.5rem 0;
  border: 1px solid rgba(13, 148, 136, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 3rem 2.5rem;
    border-radius: 40px;
  }
}

.cta-banner-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .cta-banner-content h2 {
    font-size: 2.5rem;
  }
}

.cta-banner-image {
  display: flex;
  gap: 15px;
}

.cta-banner-image i {
  font-size: 2rem;
  color: #5eead4;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .cta-banner-image i {
    font-size: 3.5rem;
  }
}

/* Footer */
.footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(13, 148, 136, 0.2);
  padding: 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-widget h4 {
  color: #5eead4;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 0.5rem;
}

.footer-widget a {
  color: #a7c5c0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-widget a:hover {
  color: #5eead4;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: #a7c5c0;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: #5eead4;
  width: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: #a7c5c0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #5eead4;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(13, 148, 136, 0.2);
}

.social-icons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.social-icons i {
  font-size: 1.3rem;
  color: #9cb8b3;
  transition: all 0.3s;
  cursor: pointer;
}

.social-icons i:hover {
  color: #5eead4;
  transform: translateY(-3px);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background: linear-gradient(135deg, #0a1212 0%, #061010 100%);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  border: 1px solid rgba(13, 148, 136, 0.3);
  position: relative;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #5eead4;
}

.close-modal:hover {
  color: #fbbf24;
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  color: #5eead4;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: rgba(20, 50, 45, 0.5);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 8px;
  color: #e8f0ed;
  font-family: inherit;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #0d9488;
}

/* Page Styles */
.page-content {
  padding: 2rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #5eead4 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-body {
  color: #a7c5c0;
  line-height: 1.8;
}

/* Single Post Styles */
.single-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.post-meta {
  color: #9cb8b3;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.post-thumbnail {
  margin-bottom: 1.5rem;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.post-content {
  color: #a7c5c0;
  line-height: 1.8;
}

.post-tags {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 148, 136, 0.2);
}

/* WordPress Admin Bar Adjustment */
body.admin-bar .nav-menu {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .nav-menu {
    top: 46px;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #0a1212;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  border-radius: 10px;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Button hover effects */
button {
  min-height: 44px;
  touch-action: manipulation;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}