/* ============================================
   MT-Themes Public Website Styles
   Professional RTL Design System
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

ul {
  list-style: none;
}

/* ---- CSS Variables ---- */
:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --primary-50: #eff6ff;
  --secondary: #8b5cf6;
  --secondary-dark: #7c3aed;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #0f172a;
  --dark-700: #1e293b;
  --dark-600: #334155;
  --dark-500: #475569;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all .3s ease;
  --font: 'Cairo', sans-serif;
}

/* ---- Base ---- */
::selection { background: var(--primary); color: var(--white); }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
p { color: var(--dark-500); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius); font-family: var(--font);
  font-weight: 600; font-size: 15px; border: none; cursor: pointer;
  transition: var(--transition); text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white)!important; }
.btn-outline-light { background: transparent; border: 2px solid var(--white); color: var(--white); padding: 8px 20px; font-size: 14px; }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: var(--radius-lg); }
.btn-sm { padding: 12px 20px; font-size: 13px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,23,42,.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.site-header.scrolled { background: rgba(15,23,42,.97); box-shadow: 0 4px 30px rgba(0,0,0,.15); border-bottom-color: transparent; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; transition: height .4s cubic-bezier(.4,0,.2,1);
}
.site-header.scrolled .header-inner { height: 80px; }
.logo { position: relative; }
.logo img { height: 40px; width: auto; transition: var(--transition); }
.logo:hover img { transform: scale(1.04); }
.logo-text {font-weight:400; font-family: 'Pacifico', cursive; color: #fff; font-size: 1.9rem; position: relative; white-space: nowrap; transition: all 0.5s ease-in-out; }
.logo-text::after { content: ""; position: absolute; right: -15px; bottom: 12px; width: 9px; height: 9px; border-radius: 50%; background-color: #0D6EFD; transition: all 0.5s ease-in-out; }
.logo:hover .logo-text { text-shadow: 0 0 20px rgba(59,130,246,.4); }
.logo:hover .logo-text::after { background-color: #3b82f6; box-shadow: 0 0 12px rgba(59,130,246,.6); transform: scale(1.2); }
.nav-list { display: flex; list-style: none; gap: 6px; margin: 0; padding: 0; }
.nav-list a {
  display: block; padding: 9px 20px; color: rgba(255,255,255,.7);
  font-weight: 500; font-size: 15px; border-radius: 50px;
  transition: all .3s cubic-bezier(.4,0,.2,1); position: relative;
}
.nav-list a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-list a.active { color: var(--white); background: rgba(59,130,246,.2); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    line-height: 30px;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(8px);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.header-actions .btn-outline-light i {
  position:relative;
  top:1px;
}

.header-actions .btn-outline-light:hover {
  background: var(--white); color: var(--dark); border-color: var(--white);
  box-shadow: 0 4px 20px rgba(255,255,255,.2); transform: translateY(-1px);
}
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
.hamburger-line {
  width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 84px; left: 0; right: 0;
  background: rgba(15,23,42,.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 20px; z-index: 999;
  transform: translateY(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu.open { transform: translateY(0); display: block; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list li { margin-bottom: 4px; }
.mobile-nav-list a {
  display: block; padding: 12px 16px; color: rgba(255,255,255,.8);
  font-weight: 500; border-radius: var(--radius); transition: var(--transition);
}
.mobile-nav-list a:hover, .mobile-nav-list a.active { background: rgba(255,255,255,.1); color: var(--white); }
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 998; opacity: 0; transition: opacity .3s ease;
}
.mobile-overlay.open { display: block; opacity: 1; }

/* ---- Hero Section ---- */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, #16213e 100%); }
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('/images/website/bgMove.webp');
  opacity: 0.12;
  animation: ztBgMove 150s linear infinite;
  pointer-events: none;
  filter: grayscale(1);
  z-index: 0;
}
.hero .owl-carousel { margin: 0; padding: 0; position: relative; z-index: 1; }
.hero .owl-theme .owl-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10;
}
.hero .owl-theme .owl-dots .owl-dot span { background: rgba(255,255,255,.4); }
.hero .owl-theme .owl-dots .owl-dot.active span { background: #fff; }
.hero-slide {
  position: relative; padding: 160px 0 100px; overflow: hidden;
  min-height: 80vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.hero-slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 100%);
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 20% 50%, rgba(59,130,246,.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(139,92,246,.15) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.3);
  border-radius: 50px; color: var(--primary-light); font-size: 14px; font-weight: 500;
  margin-bottom: 24px;
}
.hero h1, .hero-slide h1 { color: #fff; margin-bottom: 20px; }
.hero p, .hero-slide p { color: rgba(255,255,255,.7); font-size: 1.2rem; margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
/* Owl fade animation */
.owl-carousel .owl-item { opacity: 1; }
.fadeOut { animation: owlFadeOut .5s both; }
.fadeIn { animation: owlFadeIn .5s both; }
@keyframes owlFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes owlFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- Section Common ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--dark-500); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-badge {
  display: inline-block; padding: 6px 16px; background: var(--primary-50);
  color: var(--primary); font-size: 13px; font-weight: 600; border-radius: 50px;
  margin-bottom: 12px;
}

/* ---- Bootstrap Grid (minimal for themes) ---- */
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.col-lg-4, .col-md-6 { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; }
@media (min-width: 768px) { .col-md-6 { flex: 0 0 50%; max-width: 50%; } }
@media (min-width: 992px) { .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } }

/* ---- Zid Themes Header ---- */
.zt-header {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, #16213e 100%);
  padding: 170px 0 100px; color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.zt-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('/images/website/bgMove.webp');
  opacity: 0.05;
  animation: ztBgMove 150s linear infinite;
  pointer-events: none;
  filter: grayscale(1);
}
.zt-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(59,130,246,.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(139,92,246,.12) 0%, transparent 50%);
  pointer-events: none;
}
.zt-header h1 { font-weight: 800; font-size: 2.5rem; margin-bottom: 35px; color: #fff; }
.zt-header p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; line-height: 35px; color: rgba(255,255,255,.85); }
.zt-tabs { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.zt-tab {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
  border-radius: 30px; font-weight: 600; font-size: 15px; cursor: pointer;
  transition: all .3s ease; border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); font-family: var(--font);
}
.zt-tab:hover { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.3); }
.zt-tab.active { background: #fff; color: #0D6EFD; border-color: #fff; }
@keyframes ztBgMove {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

/* ---- Zid Themes Section ---- */
.zt-section {background-color:#f7f7f7; padding: 100px 0 80px; }
.zt-section-header { text-align: center; margin-bottom: 50px; }
.zt-section-title { font-weight: 700; font-size: clamp(1.5rem, 3.5vw, 2.25rem); color: var(--dark); }

/* ---- Zid Theme Cards ---- */
.zt-card {
  background: #fff; border-radius: 15px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1); margin-bottom: 40px; transition: all .3s ease;
}
.zt-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,.2); }
.zt-card-img { position: relative; overflow: hidden; height: 250px; }
.zt-card-img img { width: 100%; object-fit: cover; transition: transform .5s ease; }
.zt-card:hover .zt-card-img img { transform: scale(1.05); }
.zt-card-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgb(11 97 222 / 60%); display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: all .3s ease;
}
.zt-card:hover .zt-card-overlay { opacity: 1; }
.zt-preview-btn {
  background: #fff; color: #0D6EFD; padding: 10px 20px; border-radius: 30px;
  font-weight: 600; text-decoration: none; transition: all .3s ease;
}
.zt-preview-btn:hover { background: #3D155F; color: #fff; }
.zt-card-info { padding: 20px; text-align: center; }
.zt-card-info h3 { margin-bottom: 10px; font-weight: 700; font-size: 1.2rem; color: #333; }
.zt-card-info p {
      color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.zt-card-actions { display: flex; justify-content: center; padding-bottom: 30px; }
.zt-card-actions a {
  padding: 8px 20px; margin: 0 5px; border-radius: 30px;
  text-decoration: none; font-weight: 500; font-size: .9rem; transition: all .3s ease;
}
.zt-demo-btn { background: #0D6EFD; color: #fff; }
.zt-demo-btn:hover { background: #3D155F; color: #fff; }
.zt-docs-btn { background: #f5f5f5; color: #333; }
.zt-docs-btn:hover { background: #e0e0e0; color: #333; }

/* ---- Zid Themes CTA ---- */
.zt-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, #16213e 100%);
  padding: 120px 0; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.zt-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url(/images/website/bgMove.webp);
    opacity: 0.05;
    animation: ztBgMove 150s linear infinite;
    pointer-events: none;
    filter: grayscale(1);
}
.zt-cta::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(59,130,246,.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(139,92,246,.12) 0%, transparent 50%);
  pointer-events: none;
}
.zt-cta h2 { font-weight: 800; font-size: 2.5rem; margin-bottom: 20px; color: #fff; }
.zt-cta p { font-size: 1.1rem; max-width: 550px; margin: 0 auto 20px; line-height: 35px; color: rgba(255,255,255,.85); }
.zt-cta-btn {
  background: #fff; color: #0D6EFD; padding: 12px 30px; border-radius: 30px;
  font-weight: 600; text-decoration: none; transition: all .3s ease;
  display: inline-block; margin-top: 20px;
}
.zt-cta-btn:hover { background: #3D155F; color: #fff; }

/* ---- Owl Carousel Overrides ---- */
.owl-carousel { padding: 10px 0; }
.owl-theme .owl-dots { margin-top: 24px; }
.owl-theme .owl-dots .owl-dot span {
  width: 10px; height: 10px; background: var(--gray-300); transition: all .3s;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary); width: 28px; border-radius: 5px;
}
.owl-theme .owl-dots .owl-dot:hover span { background: var(--primary-light); }
.owl-carousel .owl-stage { display: flex; }
.owl-carousel .owl-item { display: flex;padding:0 5px; }
.owl-carousel .owl-item > * { width: 100%; }

.themes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 991px) { .themes-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 575px) { .themes-grid { grid-template-columns: 1fr; gap: 16px; } }
.theme-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
  transition: all .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
}
.theme-card:hover { transform: translateY(-6px); border-color: var(--primary-light); }
.theme-card-image {
  position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--gray-100);
}
.theme-card-image img {
  width: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.theme-card:hover .theme-card-image img { transform: scale(1.05); }
.theme-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; font-size: 12px; font-weight: 700; padding: 4px 14px;
  border-radius: 50px; box-shadow: 0 2px 8px rgba(59,130,246,.3);
}
.theme-card-body {
  padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column;
}
.theme-card-body h3 {
  font-size: 1.15rem; margin-bottom: 8px; line-height: 1.4;
}
.theme-card-body h3 a { color: var(--dark); transition: color .3s; }
.theme-card-body h3 a:hover { color: var(--primary); }
.theme-card-body > p {
  font-size: 14px; color: var(--dark-500); line-height: 1.7;
  margin-bottom: 20px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.theme-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--gray-100);
}
.theme-price {
  font-size: 1.1rem; font-weight: 800; color: var(--primary);
}


/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-card p { font-size: 14px; }
.owl-carousel .owl-stage {
  padding:10px 0;
}
/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: var(--transition);
  display: flex; flex-direction: column; height: 100%;
}
.testimonial-stars { color: var(--warning); margin-bottom: 16px; font-size: 16px; }
.testimonial-content { font-size: 15px; color: var(--dark-600); margin-bottom: 20px; line-height: 1.8; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 56px!important; height: 56px!important; border-radius: 12px; object-fit: contain;
  background: var(--white); flex-shrink: 0; min-width: 56px;
  border: 1px solid var(--gray-200); padding: 4px;
}
.testimonial-avatar-fallback {
  display: flex; align-items: center; justify-content: center;
  border: none; padding: 0; border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.testimonial-avatar-fallback span {
  color: #fff; font-weight: 700; font-size: 20px; line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.testimonial-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.testimonial-info span { font-size: 13px; color: var(--gray-400); }
.testimonial-theme { display: block; color: var(--primary) !important; font-size: 12px !important; }

/* ---- Client Logos ---- */
.clients-section { background: var(--gray-50); }
.client-card {
  background: var(--white); border-radius: 12px;
  box-shadow: 0 0 6px 3px rgba(0,0,0,0.03);
  padding: 20px; text-align: center; display: flex;
  align-items: center; justify-content: center;
  height: 120px; transition: var(--transition);
}
.client-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.client-card img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
@media (max-width: 767px) { .client-card { height: 100px; padding: 16px; } }

/* ---- Blog Cards ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 575px) { .blog-grid { grid-template-columns: 1fr; gap: 16px; } }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all .4s cubic-bezier(.4,0,.2,1);
  border: 1px solid var(--gray-200); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); position: relative; display: block; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-no-img { display: flex; align-items: center; justify-content: center; }
.blog-card-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px);
  transition: all .4s ease;
}
.blog-card-icon-wrap i { font-size: 32px; color: rgba(255,255,255,.9); }
.blog-card:hover .blog-card-icon-wrap { transform: scale(1.1) rotate(-5deg); background: rgba(255,255,255,.3); }
.blog-card-cat-overlay {
  position: absolute; bottom: 12px; right: 12px; padding: 5px 14px;
  background: rgba(0,0,0,.5); backdrop-filter: blur(8px); color: #fff;
  font-size: 12px; font-weight: 600; border-radius: 50px;
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.blog-card:hover .blog-card-cat-overlay { background: rgba(59,130,246,.8); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.6; }
.blog-card-body h3 a { color: var(--dark); transition: var(--transition); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-excerpt, .blog-card-body > p {
  font-size: 14px; color: var(--dark-500); line-height: 1.7; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: auto;
  padding-top: 16px; border-top: 1px solid var(--gray-200);
}
.blog-card-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--gray-400); }
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
.blog-read-more {
  font-size: 13px; font-weight: 600; color: var(--primary);
  display: flex; align-items: center; gap: 6px; transition: var(--transition); white-space: nowrap;
}
.blog-read-more:hover { color: var(--primary-dark); gap: 10px; }
.blog-read-more i { font-size: 11px; transition: transform .3s ease; }
.blog-card:hover .blog-read-more i { transform: translateX(-4px); }

/* ---- FAQ Accordion ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
@media (max-width: 767px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  cursor: pointer; transition: border-color .3s;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.open { border-color: var(--primary); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 24px; font-weight: 600; font-size: 15px;
  color: var(--dark); transition: var(--transition);
  font-family: var(--font); text-align: right;
}
.faq-item:hover .faq-question { color: var(--primary); }
.faq-question .faq-icon { transition: transform .3s ease; color: var(--primary); font-size: 14px; flex-shrink: 0; }
.faq-item.open .faq-question .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; max-height: none !important; overflow: visible !important; }
.faq-answer p, .faq-answer ul, .faq-answer ol { font-size: 14px; line-height: 1.8; color: var(--dark-500); margin: 0; }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.cta-section .btn { background: var(--white); color: var(--primary); }
.cta-section .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }


/* ---- Blog Post Page ---- */

/* Hero */
.hero .owl-carousel .owl-item {
  padding:0;
}

.bp-hero {
  position: relative; padding: 160px 0 64px; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, #16213e 100%);
}
.bp-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59,130,246,.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(139,92,246,.1) 0%, transparent 50%);
}
.bp-hero-inner { position: relative; z-index: 2; }

/* Breadcrumbs */
.bp-breadcrumbs {
  display: flex; align-items: center; gap: 4px; margin-bottom: 32px;
  font-size: 13px; font-weight: 500;
}
.bp-breadcrumbs a { color: rgba(255,255,255,.5); transition: var(--transition); }
.bp-breadcrumbs a:hover { color: var(--white); }
.bp-breadcrumbs span { color: rgba(255,255,255,.8); }
.bp-breadcrumbs-sep { font-size: 9px; color: rgba(255,255,255,.25); margin: 0 6px; }

/* Hero Content */
.bp-hero-content { max-width: 800px; }
.bp-category-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px;
  padding: 6px 16px; font-size: 13px; font-weight: 600;
  background: rgba(59,130,246,.15); color: rgba(255,255,255,.9);
  border-radius: 50px; border: 1px solid rgba(59,130,246,.25);
  transition: var(--transition);
}
.bp-category-badge:hover { background: rgba(59,130,246,.3); }
.bp-hero-content h1 {
  color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.5; margin-bottom: 16px;
}
.bp-excerpt {
  color: rgba(255,255,255,.6); font-size: 1.05rem; line-height: 1.8;
  max-width: 700px; margin-bottom: 24px;
}
.bp-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  color: rgba(255,255,255,.5); font-size: 13px;
}
.bp-meta span { display: flex; align-items: center; gap: 5px; }
.bp-meta i { font-size: 12px; }
.bp-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.25); }

/* Article Layout */
.bp-layout { max-width: 820px; margin: 0 auto; }
.bp-article { padding: 48px 0 32px; }

/* Featured Image */
.bp-featured-image {
  margin-bottom: 40px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.bp-featured-image img { width: 100%; height: auto; display: block; }

/* Post Content */
.blog-post-content { font-size: 16.5px; line-height: 1.9; color: var(--dark-600); }
.blog-post-content h2 {
  margin: 40px 0 18px; font-size: 1.5rem; color: var(--dark);
  padding-bottom: 12px; border-bottom: 2px solid var(--gray-200);
}
.blog-post-content h3 { margin: 32px 0 14px; font-size: 1.2rem; color: var(--dark); }
.blog-post-content p { margin-bottom: 18px; }
.blog-post-content img { border-radius: var(--radius-lg); margin: 28px 0; box-shadow: var(--shadow); }
.blog-post-content pre {
  background: var(--dark); color: #e2e8f0; padding: 24px; border-radius: var(--radius-lg);
  overflow-x: auto; margin: 24px 0; font-size: 14px; direction: ltr; text-align: left;
  border: 1px solid var(--dark-600);
}
.blog-post-content code { font-family: 'Fira Code', monospace; }
.blog-post-content blockquote {
  border-right: 4px solid var(--primary); padding: 20px 28px; background: var(--primary-50);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0; margin: 24px 0;
  font-style: italic; color: var(--dark-500);
}
.blog-post-content ul, .blog-post-content ol { padding-right: 28px; margin-bottom: 18px; }
.blog-post-content li { margin-bottom: 10px; line-height: 1.8; }
.blog-post-content a { color: var(--primary); font-weight: 500; border-bottom: 1px solid transparent; transition: var(--transition); }
.blog-post-content a:hover { border-bottom-color: var(--primary); }

/* Tags */
.bp-tags {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--gray-200);
}
.bp-tags-label { font-size: 14px; font-weight: 600; color: var(--dark-600); display: flex; align-items: center; gap: 6px; }
.bp-tags-label i { color: var(--gray-400); }
.bp-tag {
  padding: 5px 16px; background: var(--gray-50); color: var(--dark-500);
  border-radius: 50px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--gray-200); transition: all .3s ease;
}
.bp-tag:hover { background: var(--primary-50); color: var(--primary); border-color: var(--primary); }

/* Share Section */
.bp-share { padding: 28px 0; border-top: 1px solid var(--gray-200); }
.bp-share-title {
  font-size: 15px; font-weight: 600; color: var(--dark-600); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.bp-share-title i { color: var(--primary); }
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--white); transition: all .3s cubic-bezier(.4,0,.2,1);
  border: none; cursor: pointer; font-family: var(--font);
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.share-btn.twitter { background: #000; }
.share-btn.facebook { background: #1877f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.copy { background: var(--dark-500); }

/* Related Posts */
.bp-related {
  padding: 64px 0; margin-top: 32px;
  background: var(--gray-50); border-top: 1px solid var(--gray-200);
}
.bp-related-title {
  text-align: center; margin-bottom: 40px; font-size: 1.5rem; color: var(--dark);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.bp-related-title i { color: var(--primary); font-size: 1.2rem; }

/* ---- Theme Detail ---- */
.theme-detail-hero {
  background: #1a1a2e; padding: 170px 0 100px; color: #fff; text-align: center;
  position: relative; overflow: hidden; min-height: 420px;
}
.theme-hero-parallax {
  position: absolute; inset: -40px; pointer-events: none;
  will-change: transform;
}
.theme-hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  display: block;
}
.theme-hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: rgba(15,23,42,.45);
}
.theme-detail-hero h1 { color: var(--white); margin-bottom: 12px; font-weight: 800; font-size: 2.5rem; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.theme-detail-hero p { color: rgba(255,255,255,.9); text-shadow: 0 1px 6px rgba(0,0,0,.25); }
.theme-detail-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.theme-features { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin: 32px 0; }
.feature-item { display: flex; gap: 12px; padding: 16px; background: var(--gray-50); border-radius: var(--radius); }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-50); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item h4 { font-size: 15px; margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--gray-400); }

/* ---- User Guide Accordion ---- */
.theme-guide { margin-top: 48px; }
.theme-guide > h2 { margin-bottom: 8px; }
.theme-guide-subtitle { color: var(--gray-400); font-size: 14px; margin-bottom: 32px; }
.theme-guide-section { margin-bottom: 32px; }
.theme-guide-section-title {
  font-size: 1.25rem; font-weight: 700; color: var(--primary);
  margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-100);
}
.theme-guide-section-img {
  width: 100%; border-radius: var(--radius-lg); margin-bottom: 20px;
  box-shadow: var(--shadow-md); overflow: hidden;
}
.theme-guide-section-img img { width: 100%; height: auto; display: block; }
.theme-accordion {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 8px; overflow: hidden; background: var(--white);
  transition: box-shadow .2s ease;
}
.theme-accordion:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.theme-accordion-title {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--dark);
  text-align: right; transition: background .2s ease;
}
.theme-accordion-title:hover { background: var(--gray-50); }
.theme-accordion-title .acc-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--primary-50);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 12px; transition: transform .3s ease;
}
.theme-accordion.open .theme-accordion-title { background: var(--gray-50); color: var(--primary); }
.theme-accordion.open .theme-accordion-title .acc-icon { transform: rotate(45deg); }
.theme-accordion-body {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.theme-accordion-body-inner {
  padding: 0 20px 20px; font-size: 14px; line-height: 1.9; color: var(--gray-500);
}
.theme-accordion-body-inner img {
  max-width: 100%; height: auto; border-radius: var(--radius); margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.theme-accordion-body-inner ul,
.theme-accordion-body-inner ol { padding-right: 20px; margin: 8px 0; }
.theme-accordion-body-inner li { margin-bottom: 4px; }
.theme-accordion-body-inner h3 { font-size: 15px; margin: 16px 0 8px; color: var(--dark); }
.theme-accordion-body-inner p { margin-bottom: 8px; }

/* ---- Contact Form ---- */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; color: var(--dark-600); }
.form-control {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius); font-family: var(--font); font-size: 15px;
  transition: var(--transition); background: var(--white); color: var(--dark);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(59,130,246,.1); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-error { color: var(--danger); font-size: 13px; margin-top: 4px; }
.form-success { text-align: center; padding: 40px; }
.form-success i { font-size: 48px; color: var(--success); margin-bottom: 16px; }

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  padding: 12px 0; font-size: 13px; color: var(--gray-400);
}
.breadcrumbs a { color: var(--gray-400); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 8px; }

/* ---- Pagination ---- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 14px;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.pagination a { color: var(--dark-500); background: var(--gray-50); border: 1px solid transparent; }
.pagination a:hover { background: var(--primary-50); color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(59,130,246,.15); }
.pagination .active { background: var(--primary); color: var(--white); box-shadow: 0 4px 14px rgba(59,130,246,.3); }

/* ---- Footer ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }

/* CTA Band */
.footer-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 48px 0; position: relative; overflow: hidden;
}
.footer-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255,255,255,.08) 0%, transparent 50%);
}
.footer-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; position: relative; z-index: 1;
}
.footer-cta-text h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.footer-cta-text p { color: rgba(255,255,255,.8); font-size: 15px; margin: 0; }
.footer-cta-btn {
  white-space: nowrap; background: var(--white) !important; color: var(--primary) !important;
  font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,.15);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }

/* Main Footer */
.footer-main { padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 48px; }

/* Brand Column */
.footer-brand { }
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo .logo-text { font-size: 2rem; }
.footer-desc { font-size: 14.5px; line-height: 1.9; margin-bottom: 24px; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s cubic-bezier(.4,0,.2,1); font-size: 15px;
  border: 1px solid rgba(255,255,255,.08);
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(59,130,246,.3); border-color: transparent; }

/* Heading */
.footer-heading {
  color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 24px;
  position: relative; padding-bottom: 12px;
}
.footer-heading::after {
  content: ""; position: absolute; bottom: 0; right: 0;
  width: 32px; height: 3px; background: var(--primary); border-radius: 2px;
}

/* Links */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,.55); transition: all .3s ease;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a i { font-size: 10px; color: rgba(255,255,255,.25); transition: all .3s ease; }
.footer-links a:hover { color: var(--white); gap: 12px; }
.footer-links a:hover i { color: var(--primary-light); }

/* Contact */
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.footer-contact-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  background: rgba(59,130,246,.1); color: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition);
}
.footer-contact-icon.whatsapp { background: rgba(37,211,102,.1); color: #25d366; }
.footer-contact li:hover .footer-contact-icon { background: var(--primary); color: var(--white); }
.footer-contact li:hover .footer-contact-icon.whatsapp { background: #25d366; color: var(--white); }
.footer-contact-label { display: block; font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.footer-contact a { color: rgba(255,255,255,.6); font-size: 14px; transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }

/* Bottom Bar */
.footer-bottom {
  margin-top: 48px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom-inner { text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); margin: 0; }

/* ---- Animations ---- */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Loading ---- */
.loading-spinner {
  display: inline-block; width: 24px; height: 24px;
  border: 3px solid var(--gray-200); border-top-color: var(--primary);
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .header-inner { height: 64px !important; }
  .mobile-menu { top: 64px; }
  .main-nav { display: none; }
  .header-actions .btn-outline-light {display:none;}
  .mobile-menu-toggle { display: flex; }
  .btn-outline-light.desktop-only { display: none; }
  .hero-slide { padding: 120px 0 60px; min-height: 60vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 48px 0; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-text h3 { font-size: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { text-align: center; }
  .footer-social { justify-content: center; }
  .zt-header h1 { font-size: 2rem; }
  .zt-header p { font-size: 1rem; }
  .zt-header { padding: 120px 0 60px; }
  .zt-section { padding: 60px 0 40px; }
  .zt-cta { padding: 80px 0; }
  .zt-cta h2 { font-size: 1.75rem; }
  .zt-section-title { font-size: 2rem; }
  .theme-detail-hero { padding: 120px 0 60px; }
  .theme-detail-hero h1 { font-size: 2rem; }
  .theme-detail-actions { flex-direction: column; }
  .theme-detail-actions .btn { width: 100%; }
  .theme-accordion-title { padding: 14px 16px; font-size: 14px; }
  .theme-accordion-body-inner { padding: 0 16px 16px; }
  .bp-hero { padding: 120px 0 48px; }
  .bp-hero-content h1 { font-size: 1.5rem; }
  .bp-breadcrumbs { margin-bottom: 20px; }
  .bp-breadcrumbs span { display: none; }
  .bp-article { padding: 28px 0 24px; }
  .bp-featured-image { margin-bottom: 28px; }
  .bp-meta { gap: 6px; }
  .share-buttons { justify-content: center; }
  .bp-related { padding: 48px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1, .hero-slide h1 { font-size: 1.75rem; }
  .theme-gallery { grid-template-columns: 1fr; }
  .theme-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px;
  align-items: start; max-width: 1040px; margin: 0 auto;
}
.contact-info-side { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white); border-radius: 16px; padding: 22px 24px;
  border: 1px solid var(--gray-200); display: flex; align-items: center; gap: 16px;
  text-decoration: none; transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: var(--primary-light); }
.contact-card-whatsapp:hover { border-color: #25d366; }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 20px; color: white;
}
.contact-card-icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.contact-card-icon.email { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.contact-card-icon.phone { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.contact-card-text { flex: 1; min-width: 0; }
.contact-card-title { font-weight: 700; color: var(--dark); font-size: 15px; margin-bottom: 2px; }
.contact-card-value { color: var(--primary); font-size: 14px; text-decoration: none; display: inline-block; }
.contact-card-arrow { color: var(--gray-400); font-size: 14px; transition: transform .3s; }
.contact-card-whatsapp:hover .contact-card-arrow { transform: translateX(-4px); color: #25d366; }
.contact-social { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding-top: 4px; }
.contact-social-link {
  width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; color: var(--dark-500);
  font-size: 17px; transition: all .3s; background: var(--white);
}
.contact-social-link:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }
.contact-form-card {
  background: var(--white); border-radius: 20px; padding: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,.07); border: 1px solid var(--gray-200);
}
.contact-form-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  padding-bottom: 20px; border-bottom: 1px solid var(--gray-100);
}
.contact-form-header h2 { font-size: 1.25rem; margin: 0 0 4px; color: var(--dark); }
.contact-form-header p { color: var(--dark-500); font-size: 13px; margin: 0; }
.contact-form-icon {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px;
}
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { margin-bottom: 18px; }
.contact-field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--dark);
  margin-bottom: 7px;
}
.contact-field label i { margin-left: 6px; color: var(--primary); font-size: 12px; }
.contact-field input, .contact-field textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 12px; font-size: 14px; font-family: inherit; color: var(--dark);
  background: var(--gray-50); transition: all .3s; outline: none;
  box-sizing: border-box;
}
.contact-field input { height: 46px; }
.contact-field input:focus, .contact-field textarea:focus {
  border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 4px rgba(59,130,246,.1);
}
.contact-field textarea { resize: vertical; min-height: 120px; }
.contact-error {
  display: none; background: linear-gradient(135deg, #fef2f2, #fee2e2); color: #dc2626;
  padding: 12px 16px; border-radius: 12px; font-size: 13px; margin-bottom: 16px;
  border: 1px solid #fecaca; align-items: center; gap: 8px;
}
.contact-error::before { content: '\f071'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.contact-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px 24px; animation: contactFadeIn .5s ease;
}
.contact-success-icon {
  width: 72px; height: 72px; border-radius: 50%; margin-bottom: 20px;
  background: linear-gradient(135deg, #10b981, #059669); display: flex;
  align-items: center; justify-content: center; animation: contactBounce .6s ease .2s both;
}
.contact-success-icon i { color: white; font-size: 32px; }
.contact-success h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--dark); }
.contact-success p { color: var(--dark-500); font-size: 14px; margin: 0; }
.contact-submit-btn {
  width: 100%; height: 50px; border: none; border-radius: 14px; cursor: pointer;
  font-size: 15px; font-weight: 700; font-family: inherit; color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: all .3s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden;
}
.contact-submit-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  opacity: 0; transition: opacity .3s;
}
.contact-submit-btn:hover::before { opacity: 1; }
.contact-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,.35); }
.contact-submit-btn:active { transform: translateY(0); }
.contact-submit-btn:disabled { cursor: not-allowed; transform: none !important; }
.contact-btn-text, .contact-btn-loading {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px;
}
.contact-btn-text i { font-size: 14px; }
.contact-spinner {
  display: inline-block; width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,.3); border-top-color: white;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes contactFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes contactBounce { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .contact-form-card { padding: 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
}
