:root {
    --primary: #FFFFFF;
    --secondary: #F5F7F6;
    --accent: #06543C;
    --accent-light: #38785D;
    --dark: #053527;
    --text: #175442;
    --text-light: #38785D;
    --border: #C3A25C;
    --shadow: 0 5px 15px rgba(5, 53, 39, 0.08);
    --shadow-lg: 0 10px 30px rgba(5, 53, 39, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --impotent-text: #FFD700;
}

/* Accessibility: Visually hidden but available for screen readers */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ══════════════════════════════════════════════════════════
   CLIENT TRUST SECTION
══════════════════════════════════════════════════════════ */

.client-trust-section {
  position: relative;
  background: linear-gradient(160deg, #053527 0%, #0b3d2b 55%, #06543C 100%);
  padding: 110px 0 120px;
  overflow: hidden;
}
.client-trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Orbs */
.ct-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: ctOrbDrift 22s ease-in-out infinite alternate;
}
.ct-orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,215,0,.12) 0%, transparent 70%);
  top: -180px; right: -120px;
}
.ct-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(56,120,93,.25) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation-delay: -11s;
}
@keyframes ctOrbDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px,-40px) scale(1.15); }
}

/* Eyebrow badge */
.ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,215,0,.12);
  border: 1px solid rgba(255,215,0,.3);
  color: #FFD700;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 22px;
}

/* Heading */
.ct-heading {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
}
.ct-heading em {
  font-style: italic;
  color: #FFD700;
}

.ct-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 460px;
}

/* Stats row */
.ct-stats-row {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.ct-stat {
  flex: 1 1 100px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,215,0,.18);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.ct-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(255,215,0,.5);
}
.ct-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
}
.ct-stat-lbl {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* Quote callout */
.ct-quote-callout {
  position: relative;
  background: linear-gradient(135deg, rgba(255,215,0,.14), rgba(255,215,0,.06));
  border: 1px solid rgba(255,215,0,.3);
  border-radius: 16px;
  padding: 28px 28px 28px 24px;
  margin-top: 32px;
}
.ct-quote-callout::before {
  content: '"';
  position: absolute;
  top: -18px;
  left: 20px;
  font-size: 5rem;
  color: #FFD700;
  line-height: 1;
  opacity: .6;
  font-family: Georgia, serif;
}
.ct-quote-text {
  font-size: 1rem;
  color: rgba(255,255,255,.88);
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 14px;
}
.ct-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ct-author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #ffed4e);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #053527;
  flex-shrink: 0;
}
.ct-author-name {
  font-weight: 600;
  color: #FFFFFF;
  font-size: .9rem;
}
.ct-author-role {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.ct-stars {
  margin-top: 4px;
  color: #FFD700;
  font-size: .75rem;
  letter-spacing: 1px;
}

/* CTA buttons */
.ct-cta-row {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ct-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  border: none;
  cursor: pointer;
}
.ct-btn-primary {
  background: linear-gradient(135deg, #FFD700, #ffed4e);
  color: #053527;
  box-shadow: 0 8px 24px rgba(255,215,0,.3);
}
.ct-btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(255,215,0,.45);
  color: #053527;
}
.ct-btn-outline {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.25);
  color: #FFFFFF;
  backdrop-filter: blur(6px);
}
.ct-btn-outline:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-3px);
  color: #FFFFFF;
}

/* ── MEDIA GRID ───────────────────────────────────────────── */
.ct-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.ct-media-card {
  position: relative;
}
.ct-media-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.35);
  color: #FFD700;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.ct-media-label--video {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}
.ct-media-label--video i { color: #FFD700; }

/* ── SHARED REEL / VIDEO WRAPPER ──────────────────────────── */
.ct-reel-wrapper {
  position: relative;
}
.ct-reel-frame {
  position: absolute;
  inset: -14px;
  border: 2px solid rgba(255,215,0,.18);
  border-radius: 28px;
  transform: rotate(2.5deg);
  pointer-events: none;
  z-index: 0;
}
.ct-reel-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255,215,0,.1);
  border-radius: 20px;
}
.ct-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: #FFD700;
  border-style: solid;
  z-index: 2;
}
.ct-corner.tl { top: -4px; left: -4px; border-width: 3px 0 0 3px; border-radius: 5px 0 0 0; }
.ct-corner.tr { top: -4px; right: -4px; border-width: 3px 3px 0 0; border-radius: 0 5px 0 0; }
.ct-corner.bl { bottom: -4px; left: -4px; border-width: 0 0 3px 3px; border-radius: 0 0 0 5px; }
.ct-corner.br { bottom: -4px; right: -4px; border-width: 0 3px 3px 0; border-radius: 0 0 5px 0; }

/* ── EMBED / VIDEO CARD ───────────────────────────────────── */
.ct-embed-card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(5,53,39,.35);
  background: #000;
}
.ct-video-card {
  min-height: 480px;
  cursor: pointer;
}
.ct-video-card video {
  border-radius: 0;
}

/* Poster layer */
.ct-video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(
    to top,
    rgba(5,53,39,.92) 0%,
    rgba(5,53,39,.45) 55%,
    rgba(0,0,0,.15) 100%
  );
  padding: 28px;
  text-align: center;
}

/* Play button */
.ct-play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  background: rgba(255,215,0,.18);
  color: #FFD700;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(6px);
  animation: ctPulsePing 2.2s ease-in-out infinite;
  padding-left: 4px;
  flex-shrink: 0;
}
.ct-play-btn:hover {
  background: #FFD700;
  color: #053527;
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 8px 28px rgba(255,215,0,.5);
}
@keyframes ctPulsePing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,.4); }
  50%       { box-shadow: 0 0 0 18px rgba(255,215,0,0); }
}

/* Poster text */
.ct-poster-text { color: #fff; line-height: 1.6; }
.ct-poster-tag {
  display: inline-block;
  background: rgba(255,215,0,.2);
  border: 1px solid rgba(255,215,0,.4);
  color: #FFD700;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.ct-poster-text p {
  font-size: .95rem;
  margin: 0;
  color: rgba(255,255,255,.9);
}
.ct-poster-text strong { color: #FFD700; }

/* ── BOTTOM BADGES ────────────────────────────────────────── */
.ct-badges-row {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.ct-badge-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,215,0,.15);
  border-radius: 40px;
  padding: 10px 22px;
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  font-weight: 500;
  transition: all .3s;
}
.ct-badge-pill:hover {
  background: rgba(255,215,0,.1);
  border-color: rgba(255,215,0,.4);
  color: #FFD700;
  transform: translateY(-2px);
}
.ct-badge-pill i { color: #FFD700; font-size: 1rem; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .client-trust-section { padding: 80px 0 90px; }
  .ct-sub { max-width: 100%; }
  .ct-media-grid { gap: 16px; }
}
@media (max-width: 767.98px) {
  .client-trust-section { padding: 60px 0 70px; }
  .ct-heading { font-size: 2rem; }
  .ct-stats-row .ct-stat { flex: 1 1 calc(50% - 14px); }
  .ct-cta-row { flex-direction: column; }
  .ct-btn { justify-content: center; }
  .ct-media-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 48px auto 0;
  }
  .ct-video-card { min-height: 360px; }
  .ct-badges-row { gap: 10px; }
  .ct-badge-pill { font-size: .78rem; padding: 8px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .ct-orb,
  .ct-play-btn { animation: none !important; }
}

/* Focus styles for better accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--impotent-text) !important;
    outline-offset: 2px !important;
}

/* Tooltip accessibility */
.tooltip {
    position: absolute;
    background: var(--dark);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

button:hover .tooltip,
button:focus .tooltip {
    opacity: 1;
}



 .blog-navigation {
        padding: 1.5rem;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #f0f0f0;
        margin: 2rem 0;
    }
    
    .blog-nav-link {
        background: #f8f9fa;
        border: 2px solid transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        min-height: 90px;
    }
    
    .blog-nav-link:hover:not(.disabled) {
        background: #ffffff;
        border-color: #FFD700;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
    }
    
    .blog-nav-link.prev-blog:hover:not(.disabled) {
        padding-left: 20px;
    }
    
    .blog-nav-link.next-blog:hover:not(.disabled) {
        padding-right: 20px;
    }
    
    .blog-nav-link.disabled {
        opacity: 0.6;
        cursor: not-allowed;
        background: #f5f5f5;
    }
    
    .nav-icon {
        width: 48px;
        height: 48px;
        background: #FFD700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #053527;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .blog-nav-link:hover:not(.disabled) .nav-icon {
        transform: scale(1.1);
    }
    
    .nav-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }
    
    .nav-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .share-mini-btn {
        width: 36px;
        height: 36px;
        background: #f8f9fa;
        border-radius: 50%;
        color: #06543C;
        border: none;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .share-mini-btn:hover {
        background: #FFD700;
        transform: translateY(-2px);
        color: #053527;
    }
    
    .share-mini-btn.copy-link {
        cursor: pointer;
    }
    
    .smaller {
        font-size: 0.85rem;
    }
    
    /* Badge for Coming Soon */
    .coming-soon-badge {
        background: #06543C;
        color: #ffffff;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-left: 8px;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .blog-navigation {
            padding: 1.25rem;
        }
        
        .blog-nav-link {
            min-height: 80px;
            padding: 1rem !important;
        }
        
        .nav-icon {
            width: 40px;
            height: 40px;
        }
        
        .nav-title {
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 576px) {
        .blog-navigation {
            margin: 1.5rem 0;
        }
        
        .blog-nav-link {
            margin-bottom: 0.75rem;
        }
        
        .col-md-6 {
            margin-bottom: 0.75rem;
        }
        
        .share-mini {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        
        .share-buttons-mini {
            justify-content: center;
        }
    }
    
   /* Blog Post Cards - Additional Styles for New Content */
.featured-post {
    transition: var(--transition);
}

.featured-post .card {
    border: 1px solid rgba(6, 84, 60, 0.1);
    transition: var(--transition);
    overflow: hidden;
}

.featured-post .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--accent-light);
}

/* Post Category Badge */
.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-category.bg-primary {
    background: var(--accent) !important;
    color: white !important;
}

.post-category.bg-warning {
    background: var(--impotent-text) !important;
    color: var(--dark) !important;
}

/* Badge Styles */
.badge.bg-accent {
    background: var(--accent-light) !important;
    color: white !important;
    font-weight: 500;
    padding: 6px 12px;
}

.badge.bg-warning {
    background: var(--impotent-text) !important;
    color: var(--dark) !important;
    font-weight: 500;
    padding: 6px 12px;
}

.badge.bg-info {
    background: #17a2b8 !important;
    color: white !important;
    font-weight: 500;
    padding: 6px 12px;
}

.badge.bg-success {
    background: var(--accent) !important;
    color: white !important;
    font-weight: 500;
    padding: 6px 12px;
}

.badge.bg-light {
    background: var(--secondary) !important;
    color: var(--text) !important;
    border: 1px solid rgba(6, 84, 60, 0.1);
    font-weight: 500;
    padding: 6px 12px;
}

/* Date and Meta Information */
.post-date {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-date i {
    color: var(--accent-light);
    font-size: 0.85rem;
}

/* Card Title */
.card-title {
    color: var(--dark);
    line-height: 1.3;
    transition: var(--transition);
}

.card-title:hover {
    color: var(--accent);
}

.card-title.h1 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .card-title.h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .card-title.h1 {
        font-size: 1.5rem;
    }
}

/* Card Text */
.card-text.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
}

@media (max-width: 768px) {
    .card-text.lead {
        font-size: 1rem;
    }
}

/* Highlight Box */
.bg-light.p-4.rounded {
    background: var(--secondary) !important;
    border-left: 3px solid var(--impotent-text);
    border-radius: var(--radius) !important;
}

.bg-light.p-4.rounded h5 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.bg-light.p-4.rounded ul li {
    color: var(--text);
    font-size: 0.95rem;
}

.bg-light.p-4.rounded ul li i {
    color: var(--accent) !important;
    font-size: 0.9rem;
}

/* Author Avatar */
.avatar-sm {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.avatar-sm.bg-accent {
    background: var(--accent) !important;
    color: white !important;
}

.author-info:hover .avatar-sm {
    transform: scale(1.05);
    background: var(--impotent-text) !important;
    color: var(--dark) !important;
}

.author-info .small.fw-bold {
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.3;
}

.author-info .text-muted.smaller {
    color: var(--text-light) !important;
    font-size: 0.8rem;
}

/* Button Styles */
.btn.btn-accent {
    background: var(--accent);
    color: white;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn.btn-accent:hover {
    background: var(--impotent-text);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn.btn-accent i {
    transition: transform 0.3s ease;
}

.btn.btn-accent:hover i {
    transform: translateX(5px);
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .featured-post .card-body {
        padding: 1.5rem !important;
    }
    
    .bg-light.p-4.rounded {
        padding: 1rem !important;
    }
    
    .d-flex.align-items-center.mb-3 {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .featured-post .card-body {
        padding: 1.25rem !important;
    }
    
    .post-category {
        top: 10px;
        left: 10px;
        padding: 4px 12px;
        font-size: 0.75rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 4px 8px !important;
    }
    
    .d-flex.justify-content-between.align-items-center.mt-4 {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .btn.btn-accent {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .featured-post .card {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
    
    .post-category,
    .btn.btn-accent {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .featured-post,
    .featured-post .card,
    .btn.btn-accent,
    .avatar-sm,
    .hover-lift {
        transition: none;
    }
    
    .featured-post .card:hover,
    .btn.btn-accent:hover,
    .hover-lift:hover {
        transform: none;
    }
}

/* Accessibility Focus States */
.featured-post a:focus-visible {
    outline: 2px solid var(--impotent-text);
    outline-offset: 2px;
    border-radius: var(--radius);
}

.btn.btn-accent:focus-visible {
    outline: 2px solid var(--impotent-text);
    outline-offset: 2px;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .featured-post .card:hover {
        transform: none;
    }
    
    .btn.btn-accent:hover {
        transform: none;
        background: var(--accent);
        color: white;
    }
    
    .btn.btn-accent:active {
        background: var(--impotent-text);
        color: var(--dark);
        transform: scale(0.98);
    }
}

    /* Animation for link copy */
    @keyframes linkCopied {
        0% { transform: scale(1); }
        50% { transform: scale(0.9); }
        100% { transform: scale(1); }
    }
    
    .copy-link.copied {
        animation: linkCopied 0.3s ease;
        background: #4CAF50 !important;
        color: white !important;
    }


    
    .value-indicators .indicator {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.value-indicators .indicator:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.value-indicators .bg-accent-light {
    background-color: #ffed4e !important;
}

.smaller {
    font-size: 0.8rem;
}

 .blog-thumb {
        height: 150px;
        overflow: hidden;
        border-radius: 6px;
    }
    
    .blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Mobile adjustments */
    @media (max-width: 991px) {
        .blog-thumb {
            height: 80px;
        }
    }
    
    @media (max-width: 768px) {
        .blog-thumb {
            height: auto;
            width: 300px;
            margin: 25px;
        }
    }

/* Header Styles */
header.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: var(--dark) !important;
    box-shadow: var(--shadow-lg);
}
/* Responsive Navbar */
.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary) !important;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--primary) !important;
    opacity: 0.8;
    transition: var(--transition);
}

/* Navigation Links */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
    margin: 0 0.25rem;
    font-size: 1rem;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--impotent-text) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--impotent-text) !important;
    font-weight: 600;
}

/* Active Link Indicator */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--impotent-text);
    border-radius: 2px;
    transform: scaleX(0.8);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link.active:hover::after {
    transform: scaleX(1);
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: 1px solid var(--border);
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
    background: transparent;
}

.navbar-toggler:hover {
    background-color: rgba(195, 162, 92, 0.1);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(195, 162, 92, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
    transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
}

/* Mobile Menu */
.navbar-collapse {
    background-color: var(--dark);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease-in-out;
    max-height: 80vh;
    overflow-y: auto;
}

.navbar-collapse.show {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navigation Items */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 0;
        gap: 0.1rem;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.125rem 0;
        border-radius: 0.375rem;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background-color: rgba(195, 162, 92, 0.1);
        color: var(--impotent-text) !important;
    }
    
    .navbar-nav .nav-link.active {
        background-color: rgba(255, 215, 0, 0.1);
        color: var(--impotent-text) !important;
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    /* Contact Button in Mobile */
    .navbar-nav + .d-flex {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav + .d-flex .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Tablet & Desktop Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.95rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        background-color: transparent;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
        max-height: none;
        overflow-y: visible;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
    }
    
    .navbar-nav + .d-flex {
        margin-left: 1rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 1.25rem !important;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 575.98px) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .navbar-brand {
        max-width: 70%;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .navbar-toggler {
        padding: 0.375rem 0.5rem;
    }
    
    .navbar-collapse {
        padding: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.625rem 0.75rem !important;
        font-size: 1rem;
    }
    
    .navbar-nav + .d-flex .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Accessibility - Keyboard Navigation */
.navbar-nav .nav-link:focus-visible,
.navbar-toggler:focus-visible {
    outline: 2px solid var(--impotent-text);
    outline-offset: 2px;
}

/* Reduce Motion Support */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .navbar-nav .nav-link,
    .navbar-toggler,
    .navbar-collapse,
    .navbar-toggler-icon,
    .navbar-nav .nav-link.active::after {
        transition: none !important;
        animation: none !important;
    }
}

/* Scroll Behavior for Sticky Navbar */
.sticky-top {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(5, 53, 39, 0.95) !important;
}

/* Active Navbar Link Animation */
.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--impotent-text);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before {
    width: calc(100% - 2rem);
}

/* Get Started Button in Navbar */
.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--impotent-text);
    border-color: var(--impotent-text);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

@media (max-width: 991.98px) {
    .btn-primary {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Hide hero image on mobile devices */
@media (max-width: 991.98px) {
    .col-lg-6.text-center img.img-fluid {
        display: none !important;
    }
}

/* Or if you want to hide the entire column on mobile */
@media (max-width: 991.98px) {
    .col-lg-6.text-center {
        display: none !important;
    }
}

/* Alternative: Hide only on extra small screens */
@media (max-width: 575.98px) {
    .col-lg-6.text-center img.img-fluid {
        display: none !important;
    }
}

/* If you want to make the other column take full width when image is hidden */
@media (max-width: 991.98px) {
    .hero .row {
        text-align: center;
    }
    
    .hero .col-lg-6:first-child {
        width: 100%;
        text-align: center;
    }
    
    .hero .col-lg-6.text-center {
        display: none;
    }
}

/* For responsive hero layout without image on mobile */
@media (max-width: 991.98px) {
    .hero .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    /* Hide the image column */
    .col-lg-6.text-center {
        display: none;
    }
    
    /* Make content column full width */
    .col-lg-6:first-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Optional: Add some spacing adjustments for mobile */
@media (max-width: 767.98px) {
    .hero {
        text-align: center;
    }
    
    .hero .d-flex {
        justify-content: center;
    }
    
    /* Hide image specifically on mobile */
    .hero img.img-fluid {
        display: none !important;
    }
}

/* Mobile Navigation Items */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 0.375rem;
        margin: 0.125rem 0;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background-color: rgba(195, 162, 92, 0.1);
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar-nav .nav-link.active {
        background-color: rgba(255, 215, 0, 0.1);
    }
}

/* Contact Button with Advanced Animation */
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    border: none;
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(6, 84, 60, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
}

/* Button Pulse Effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shinePulse 6s ease-in-out infinite;
    pointer-events: none;
}

/* Button Text & Icon */
.btn-primary span {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary i {
    font-size: 1.1em;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

/* Hover Effects */
.btn-primary:hover {
    background: linear-gradient(135deg, var(--impotent-text) 0%, #ffed4e 100%);
    color: var(--dark) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(255, 215, 0, 0.4),
        0 5px 10px rgba(255, 215, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover i {
    transform: translateX(4px);
    animation: arrowBounce 0.6s ease infinite alternate;
}

/* Active/Click Animation */
.btn-primary:active {
    animation: buttonClick 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: translateY(0) scale(0.98);
}

/* Click Ripple Effect */
.btn-primary::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.btn-primary:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

/* Focus State */
.btn-primary:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(255, 215, 0, 0.3),
        0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes shinePulse {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

@keyframes arrowBounce {
    0% {
        transform: translateX(4px);
    }
    100% {
        transform: translateX(8px);
    }
}

@keyframes buttonClick {
    0% {
        transform: translateY(-3px) scale(1.05);
    }
    50% {
        transform: translateY(0) scale(0.95);
    }
    100% {
        transform: translateY(-2px) scale(1.02);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

/* Button Pulse (Continuous Attention) */
@keyframes attentionPulse {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(6, 84, 60, 0.3),
            0 0 0 0 rgba(255, 215, 0, 0);
    }
    50% {
        box-shadow: 
            0 4px 15px rgba(6, 84, 60, 0.3),
            0 0 0 10px rgba(255, 215, 0, 0.1);
    }
}

/* Add attention-grabbing class */
.btn-primary.attention {
    animation: attentionPulse 2s ease-in-out infinite;
}

/* Loading State */
.btn-primary.loading {
    position: relative;
    color: transparent !important;
}

.btn-primary.loading::before {
    animation: none;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--dark);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Mobile Optimization */
@media (max-width: 767.98px) {
    .btn-primary {
        padding: 10px 24px;
        font-size: 0.95rem;
        min-width: 140px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .btn-primary::before,
    .btn-primary:hover i,
    .btn-primary:active,
    .btn-primary:focus:not(:active)::after,
    .btn-primary.attention,
    .btn-primary.loading::after {
        animation: none !important;
    }
    
    .btn-primary:hover {
        transform: none;
    }
    
    .btn-primary:hover i {
        transform: none;
    }
}


/* Alternative: Using only CSS for ripple */
.btn-primary.clicked {
    animation: clickRipple 0.6s ease-out;
}

@keyframes clickRipple {
    0% {
        box-shadow: 
            0 4px 15px rgba(6, 84, 60, 0.3),
            0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    100% {
        box-shadow: 
            0 4px 15px rgba(6, 84, 60, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0);
    }
}

/* Footer Section - Premium Styling */
.footer-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0a2f23 100%);
    color: var(--primary);
    position: relative;
}

/* Background Elements */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.bg-shape {
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    animation: shapeFloat 20s infinite linear;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: 10s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 80%;
    animation-delay: 5s;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1) !important;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon {
    font-size: 3rem;
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    padding: 20px;
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--primary);
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: transparent;
    color: var(--primary);
    box-shadow: none;
}

.newsletter-form .btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Footer Brand */
.footer-brand {
    position: relative;
}

.brand-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.brand-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.brand-tagline {
    color: var(--impotent-text);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: var(--impotent-text);
    background: rgba(255, 215, 0, 0.1);
    color: var(--impotent-text);
}

.social-link i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--impotent-text);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom: 10px;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--impotent-text);
}

.social-link:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Footer Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--impotent-text), transparent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--impotent-text);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--impotent-text);
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Blog Posts */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-post {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.blog-link h6 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-link:hover h6 {
    color: var(--impotent-text);
}

.blog-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    color: var(--impotent-text);
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-link, .contact-text {
    color: var(--primary);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--impotent-text);
}

/* WhatsApp Quick Action */
.whatsapp-quick {
    margin-top: 25px;
}

.btn-whatsapp-quick {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-quick:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: var(--primary);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 20px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.legal-link:hover {
    color: var(--impotent-text);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .brand-text {
        font-size: 2.2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .newsletter-icon {
        font-size: 2.5rem;
        padding: 15px;
    }
}

@media (max-width: 991.98px) {
    .footer-content {
        padding: 3rem 0;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .newsletter-form .form-control {
        margin-bottom: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
    }
    
    .newsletter-form .btn-success {
        width: 100%;
        border-radius: 50px;
    }
    
    .brand-text {
        font-size: 2rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link {
        padding-left: 0;
    }
    
    .footer-link::before {
        display: none;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-legal {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .footer-legal span {
        display: none;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .brand-text {
        font-size: 1.8rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .btn-whatsapp-quick {
        width: 100%;
        justify-content: center;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .bg-shape,
    .newsletter-icon,
    .brand-text,
    .social-link,
    .footer-link,
    .blog-link,
    .contact-link,
    .btn-whatsapp-quick,
    .back-to-top {
        animation: none !important;
        transition: none !important;
    }
    
    .brand-text {
        filter: none;
    }
    
    .social-link::before {
        display: none;
    }
} 

/* Floating WhatsApp Button - Always Visible */
.floating-whatsapp {
    position: fixed;
    bottom: 100px; /* Position above back-to-top button */
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998; /* Below back-to-top button */
    box-shadow: 
        0 5px 20px rgba(37, 211, 102, 0.4),
        0 0 0 8px rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    animation: buttonFloat 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 10px 30px rgba(37, 211, 102, 0.5),
        0 0 0 12px rgba(37, 211, 102, 0.15);
    animation: none; /* Stop float animation on hover */
}

.floating-whatsapp:active {
    transform: translateY(-2px) scale(1);
}

/* Floating Animation */
@keyframes buttonFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Tooltip */
.floating-whatsapp .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.floating-whatsapp .tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}

.floating-whatsapp:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* WhatsApp Pulse Animation */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Notification Badge - Optional (can remove if not needed) */
.floating-whatsapp::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0);
    }
}

/* Adjust back-to-top position */
.back-to-top {
    bottom: 30px;
    right: 30px;
    z-index: 999; /* Above WhatsApp button */
}

/* Responsive Design */
@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp .tooltip {
        display: none; /* Hide tooltip on mobile */
    }
}

@media (max-width: 575px) {
    .floating-whatsapp {
        bottom: 70px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Mobile Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    .floating-whatsapp:hover {
        transform: none;
    }
    
    .floating-whatsapp:active {
        transform: scale(0.95);
    }
    
    .floating-whatsapp .tooltip {
        display: none;
    }
    
    /* Less bouncy animation for mobile */
    .floating-whatsapp {
        animation: buttonFloatMobile 3s ease-in-out infinite;
    }
    
    @keyframes buttonFloatMobile {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-5px) scale(1.03);
        }
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .floating-whatsapp,
    .floating-whatsapp::before,
    .floating-whatsapp::after {
        animation: none !important;
    }
    
    .floating-whatsapp:hover {
        transform: none;
    }
}

/* Dark Mode Consideration */
@media (prefers-color-scheme: dark) {
    .floating-whatsapp {
        box-shadow: 
            0 5px 20px rgba(37, 211, 102, 0.5),
            0 0 0 8px rgba(37, 211, 102, 0.15);
    }
}


  .website-projects-grid .project-card { border-radius: 16px; }

  .album{
    position: relative;
    border-radius: 14px;
    overflow: hidden;
  }

  .album-track{
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
  }

  .album-img{
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    max-height: 420px;
  }

  .album-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: rgba(0,0,0,.55);
    color: #fff;
    z-index: 5;
    transition: opacity .2s ease, transform .2s ease;
  }
  .album-btn:hover{ background: rgba(0,0,0,.7); }
  .album-btn.prev{ left: 12px; }
  .album-btn.next{ right: 12px; }

  .album:hover .album-btn{ opacity: 1; }
  .album-btn:active{ transform: translateY(-50%) scale(.98); }

  .album-dots{
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 6;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
  }
  .album-dot{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    padding: 0;
  }
  .album-dot.active{
    background: rgba(255,255,255,.95);
    width: 18px;
  }

  /* Better on small screens */
  @media (max-width: 576px){
    .album-img{ max-height: 280px; }
    .album-btn{ width: 40px; height: 40px; }
  }

/* Hero Section */
.hero {
    background: var(--dark) !important;
    color: var(--primary);
    padding:  0;
    min-height: auto;
}

.hero .text-primary {
    color: var(--impotent-text) !important;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero .lead {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Hero Buttons */
.hero .btn-primary {
    background-color: var(--impotent-text);
    border-color: var(--impotent-text);
    color: var(--dark);
    font-weight: 600;
}

.hero .btn-outline {
    background-color: transparent;
    border: 2px solid var(--border);
    color: var(--primary);
}

.hero .btn-outline:hover {
    color: var(--impotent-text);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .hero .btn-primary,
    .hero .btn-outline {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero .d-flex {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .logo-text {
        font-size: 1.15rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 1rem;
        margin-top: -10px !important;
    }
}

/* Image Optimization */
.hero img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Accessibility Improvements */
.nav-link:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--impotent-text);
    outline-offset: 2px;
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* Loading Optimization */
.hero img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section - Premium Minimal with Effects */
.hero {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    color: var(--primary);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -100px;
}

/* Animated Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite alternate;
    z-index: 1;
}

/* Floating Particles Effect */
.particle {
    position: absolute;
    background: var(--impotent-text);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatParticle linear infinite;
    z-index: 1;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 80%;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 20%;
    animation-duration: 15s;
}

/* Content Container */
.hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
}

/* Main Heading with Typewriter Effect */
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

.hero h1 .text-primary {
    color: var(--impotent-text);
    position: relative;
    display: inline-block;
}

.hero h1 .text-primary::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--impotent-text), transparent);
    animation: underlineExpand 1.5s ease-out forwards;
    animation-delay: 1s;
}

/* Lead Text with Stagger Animation */
.hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

/* Buttons Container with Stagger */
.hero .d-flex {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.9s;
}

/* Primary Button with Hover Effect */
.hero .btn-primary {
    background: var(--impotent-text);
    border: none;
    color: var(--accent);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Outline Button with Border Animation */
.hero .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--primary);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.hero .btn-outline:hover::before {
    left: 100%;
}

.hero .btn-outline:hover {
    transform: translateY(-3px);
}

/* Hero Image Container with Effects */
.hero .col-lg-6:last-child {
    position: relative;
}

/* Hero image wrapper with gold glow */
.hero-image {
    position: relative;
    display: inline-block;
}

/* Your original image styles */
.hero-image img {
    width: 120%;
    max-width: 1000px;
    height: auto;
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.2s;
    display: block;
}

/* Gold glow behind the image */
.hero-image::before {
    content: "";
    position: absolute;
    inset: -15px; /* extends slightly beyond the image */
    border-radius: 16px;
    filter: blur(18px);
    z-index: -1;
    opacity: 0;
    animation: goldGlow 3s ease-in-out infinite alternate;
    animation-delay: 1.4s; /* slightly after the slide-in */
}

/* Gold glow animation */
@keyframes goldGlow {
    0% {
        opacity: 0.4;
        filter: blur(14px);
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        filter: blur(24px);
        transform: scale(1.03);
    }
}

/* Floating Badge Element */
.floating-badge {
    position: absolute;
    top: 20%;
    right: -20px;
    background: var(--impotent-text);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transform: rotate(10deg);
    animation: floatBadge 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

/* Scroll Indicator Animation */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--impotent-text);
    font-size: 0.875rem;
    opacity: 0;
    animation: fadeInScroll 1s ease forwards;
    animation-delay: 2s;
    z-index: 2;
}

.scroll-hint::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: var(--impotent-text);
    animation: scrollLine 2s ease-in-out infinite;
}

/* Animations */
@keyframes pulseGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-100px) translateX(50px);
    }
    50% {
        transform: translateY(-50px) translateX(100px);
    }
    75% {
        transform: translateY(-150px) translateX(-50px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes imageGlow {
    from {
        opacity: 0.3;
        transform: scale(0.95);
    }
    to {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(10deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes fadeInScroll {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes scrollLine {
    0% {
        height: 0;
        opacity: 0;
    }
    30% {
        height: 30px;
        opacity: 1;
    }
    100% {
        height: 0;
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero .container {
        padding-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.125rem;
    }
    
    .hero .d-flex {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero img {
        margin-top: 3rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .floating-badge {
        right: 10px;
        top: 10%;
    }
    
    .particle {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .hero .btn-primary,
    .hero .btn-outline {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .hero .btn-primary,
    .hero .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero .lead {
        font-size: 0.95rem;
    }
    
    .hero img {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .scroll-hint {
        display: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .particle,
    .hero h1,
    .hero .lead,
    .hero .d-flex,
    .hero img,
    .hero h1 .text-primary::after,
    .floating-badge,
    .scroll-hint,
    .scroll-hint::after {
        animation: none !important;
    }
    
    .hero h1,
    .hero .lead,
    .hero .d-flex,
    .hero img {
        opacity: 1;
        transform: none;
    }
    
    .hero h1 .text-primary::after {
        opacity: 1;
        width: 100%;
    }
}


/*instagram section*/

/* =========================
   REELS SECTION - CENTERED
========================= */

.reels-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 0;

    /* Center everything */
    display: flex;
    justify-content: center;   /* Horizontal center */
    align-items: center;       /* Vertical center (if needed) */
    text-align: center;
    overflow: hidden;
}

/* Tablet */
@media (max-width: 991.98px) {
    .reels-section {
        padding: 80px 20px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .reels-section {
        padding: 60px 15px;
    }
}

/* Small phones */
@media (max-width: 575.98px) {
    .reels-section {
        padding: 40px 20px;
        margin-left: -20px;
    }
}


/* Animated Background */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bg-dot {
    position: absolute;
    background: radial-gradient(circle, var(--impotent-text) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDots 20s infinite linear;
    opacity: 0.1;
}

.dot-1 { width: 150px; height: 150px; top: 10%; left: 5%; animation-delay: 0s; }
.dot-2 { width: 100px; height: 100px; top: 60%; left: 80%; animation-delay: 5s; }
.dot-3 { width: 200px; height: 200px; bottom: 10%; left: 10%; animation-delay: 10s; }
.dot-4 { width: 120px; height: 120px; top: 20%; right: 5%; animation-delay: 15s; }

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
}

.badge-pulse {
    display: inline-block;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: pulseGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.text-accent {
    color: var(--impotent-text);
    position: relative;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--impotent-text), transparent);
    border-radius: 2px;
    animation: underlineWave 3s ease-in-out infinite;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.animate-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

/* Desktop 3-Grid View */
.desktop-grid-view {
    position: relative;
    padding: 40px 0;
}

.grid-wrapper {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(6, 84, 60, 0.1);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Video Card - Desktop */
.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--primary);
    box-shadow: 
        0 10px 20px rgba(6, 84, 60, 0.1),
        0 4px 8px rgba(6, 84, 60, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: translateY(0) scale(1);
    opacity: 0;
    animation: cardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.video-card:nth-child(1) { animation-delay: 0.3s; }
.video-card:nth-child(2) { animation-delay: 0.4s; }
.video-card:nth-child(3) { animation-delay: 0.5s; }
.video-card:nth-child(4) { animation-delay: 0.6s; }
.video-card:nth-child(5) { animation-delay: 0.7s; }
.video-card:nth-child(6) { animation-delay: 0.8s; }

/* Desktop Hover Effects */
.video-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(6, 84, 60, 0.15),
        0 10px 20px rgba(6, 84, 60, 0.1),
        0 0 0 2px rgba(255, 215, 0, 0.2);
    z-index: 2;
}

.video-card.active {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(6, 84, 60, 0.15),
        0 0 0 2px var(--impotent-text);
}

/* Video Container */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* 4:5 Aspect Ratio */
    background: linear-gradient(45deg, var(--accent-light), var(--accent));
    overflow: hidden;
}

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-element {
    transform: scale(1.08);
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: all 0.4s ease;
    opacity: 1;
}

.video-card:hover .video-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

/* Play Button */
.play-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 10px rgba(255, 215, 0, 0.2);
    opacity: 0;
}

.video-card:hover .play-control,
.video-card.active .play-control {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-control:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffed4e;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Video Info */
.video-info {
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.video-card:hover .video-info {
    transform: translateY(0);
}

.video-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
    line-height: 1.4;
}

.video-meta {
    display: flex;
    gap: 15px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Desktop Navigation */
.grid-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: var(--impotent-text);
    border-color: var(--impotent-text);
    color: var(--dark);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Mobile Single Grid View */
.mobile-single-view {
    padding: 20px 0 60px;
}

.single-grid-wrapper {
    overflow: hidden;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 500px;
}

.single-grid-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 0;
}

/* Mobile Video Card - Full Width */
.single-grid-track .video-card {
    min-width: 100%;
    margin: 0;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(6, 84, 60, 0.15),
        0 5px 15px rgba(6, 84, 60, 0.1);
    opacity: 1;
    animation: slideInMobile 0.6s ease-out;
}

@keyframes slideInMobile {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Click to Play */
.mobile-single-view .play-control {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 0 8px rgba(255, 215, 0, 0.3);
}

.mobile-single-view .video-card.active .play-control {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Mobile Navigation */
.single-grid-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
}

.mobile-nav-btn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.mobile-nav-btn:active {
    transform: scale(0.95);
    background: var(--impotent-text);
}

.mobile-indicators {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-indicator {
    width: 12px;
    height: 12px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-indicator.active {
    background: var(--impotent-text);
    transform: scale(1.2);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

/* CTA Button */
.cta-instagram {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, 
        #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    background-size: 300% 300%;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(224, 58, 143, 0.3);
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.cta-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-instagram:hover::before {
    left: 100%;
}

.cta-instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(224, 58, 143, 0.4);
}

.cta-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-instagram:hover .cta-arrow {
    transform: translateX(5px);
}

/* Animations */
@keyframes floatDots {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 4px 15px rgba(255, 215, 0, 0.3),
            0 0 20px rgba(255, 215, 0, 0.4);
    }
}

@keyframes underlineWave {
    0%, 100% {
        width: 100%;
        left: 0;
    }
    50% {
        width: 80%;
        left: 10%;
    }
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .video-grid {
        gap: 25px;
    }
}

@media (max-width: 991.98px) {
    .grid-wrapper {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    
    .badge-pulse {
        font-size: 0.75rem;
        padding: 6px 20px;
    }
    
    .display-5 {
        font-size: 2.2rem;
    }
    
    .single-grid-wrapper {
        margin: 0 15px;
    }
    
    .mobile-nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .cta-instagram {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .single-grid-wrapper {
        margin: 0 10px;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .play-control {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .bg-dot,
    .badge-pulse,
    .text-accent::after,
    .animate-text,
    .animate-subtitle,
    .video-card,
    .video-element,
    .play-control,
    .nav-btn,
    .cta-instagram,
    .single-grid-track .video-card {
        animation: none !important;
        transition: none !important;
    }
    
    .video-card {
        opacity: 1;
        transform: none;
    }
    
    .animate-text,
    .animate-subtitle {
        opacity: 1;
        transform: none;
    }
    
    .text-accent::after {
        opacity: 1;
    }
}


/* Services Section - Premium Styling */
.services-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    filter: blur(20px);
    animation: floatOrbs 25s infinite linear;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(6, 84, 60, 0.05) 0%, transparent 70%);
    animation-delay: -10s;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(6, 84, 60, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 84, 60, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Section Header */
.section-intro {
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.animate-badge {
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--impotent-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-heading {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.animate-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

/* Services Grid */
.services-grid-container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    perspective: 1000px;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 10px 30px rgba(6, 84, 60, 0.08),
        0 1px 3px rgba(6, 84, 60, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform: translateY(0) rotateX(0);
    overflow: hidden;
    opacity: 0;
    animation: cardReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-card:nth-child(1) .service-card-inner { animation-delay: 0.3s; }
.service-card:nth-child(2) .service-card-inner { animation-delay: 0.4s; }
.service-card:nth-child(3) .service-card-inner { animation-delay: 0.5s; }
.service-card:nth-child(4) .service-card-inner { animation-delay: 0.6s; }
.service-card:nth-child(5) .service-card-inner { animation-delay: 0.7s; }
.service-card:nth-child(6) .service-card-inner { animation-delay: 0.8s; }
.service-card:nth-child(7) .service-card-inner { animation-delay: 0.9s; }

.service-card:hover .service-card-inner {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(6, 84, 60, 0.15),
        0 15px 30px rgba(6, 84, 60, 0.1),
        0 0 0 1px rgba(255, 215, 0, 0.3);
}

/* Service Icon */
.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.service-icon {
    position: relative;
    font-size: 2.5rem;
    color: var(--impotent-text);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Center alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary);
}

.service-card:hover .service-icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

/* Service Content */
.service-content {
    text-align: center;
    transition: all 0.4s ease;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.4;
}

.service-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(6, 84, 60, 0.08);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: rgba(255, 215, 0, 0.15);
    color: var(--impotent-text);
    transform: translateY(-2px);
}

/* Hover Content */
.service-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.service-card:hover .service-hover {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    color: var(--impotent-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

.link-arrow {
    transition: transform 0.3s ease;
}

.service-link:hover .link-arrow {
    transform: translateX(5px);
}

.service-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Shine Effect */
.service-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.8s ease;
}

.service-card:hover .service-shine {
    left: 100%;
}

/* CTA Button with Click Triggers */
.btn-services-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary);
    border: 2px solid var(--border);
    color: var(--accent);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 84, 60, 0.1);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Hover Effects (existing) */
.btn-services-cta:hover {
    background: var(--impotent-text);
    border-color: var(--impotent-text);
    color: var(--dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* Click/Active State */
.btn-services-cta:active {
    animation: buttonClick 0.3s ease forwards;
    transform: translateY(-1px) scale(0.98);
    background: var(--impotent-text);
    border-color: var(--impotent-text);
    color: var(--dark);
}

/* Click Animation */
@keyframes buttonClick {
    0% {
        transform: translateY(-3px) scale(1.05);
    }
    50% {
        transform: translateY(0) scale(0.96);
    }
    100% {
        transform: translateY(-1px) scale(1);
    }
}

/* Button Icon (existing) */
.btn-icon {
    transition: transform 0.3s ease;
}

.btn-services-cta:hover .btn-icon {
    transform: translateX(5px);
}

/* Icon click animation */
.btn-services-cta:active .btn-icon {
    transform: translateX(8px) scale(0.9);
}

/* Shine Effect (existing) */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-services-cta:hover .btn-shine {
    left: 100%;
}

/* Click Ripple Effect */
.btn-services-cta.clicked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    animation: rippleClick 0.6s ease-out;
}

@keyframes rippleClick {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Mobile Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    .btn-services-cta:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Animations */
@keyframes floatOrbs {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card-inner {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .display-5 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .btn-services-cta {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 2.5rem 0;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .service-card-inner {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-services-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .bg-orb,
    .animate-badge,
    .animate-heading,
    .animate-subtitle,
    .service-card-inner,
    .service-icon,
    .service-shine
     {
        animation: none !important;
        transition: none !important;
    }
    
    .service-card-inner {
        opacity: 1;
        transform: none;
    }
    
    .animate-heading,
    .animate-subtitle {
        opacity: 1;
        transform: none;
    }
    
    .service-hover {
        display: none;
    }
}

/* Mobile Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    .service-card {
        cursor: default;
    }
    
    .service-hover {
        display: none;
    }
    
    .service-card:active .service-card-inner {
        transform: translateY(-5px);
    }
}

.lead.text-muted {
    color: var(--accent-light) !important;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

/* Decorative lines before and after */
.lead.text-muted::before,
.lead.text-muted::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border));
    opacity: 0.5;
    animation: lineExpand 1s ease-out forwards;
    animation-delay: 1s;
}

.lead.text-muted::before {
    left: 0;
    transform: translateX(-100%);
}

.lead.text-muted::after {
    right: 0;
    background: linear-gradient(90deg, var(--border), transparent);
    transform: translateX(100%);
}

/* Hover effect */
.lead.text-muted:hover {
    color: var(--impotent-text) !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 40px;
        opacity: 0.5;
    }
}

/* Text emphasis */
.lead.text-muted em {
    font-style: normal;
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
}

.lead.text-muted em::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--impotent-text), transparent);
    border-radius: 1px;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% {
        opacity: 0.5;
        width: 100%;
    }
    50% {
        opacity: 1;
        width: 80%;
        left: 10%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lead.text-muted {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .lead.text-muted::before,
    .lead.text-muted::after {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .lead.text-muted {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .lead.text-muted::before,
    .lead.text-muted::after {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .lead.text-muted,
    .lead.text-muted::before,
    .lead.text-muted::after,
    .lead.text-muted em::after {
        animation: none !important;
    }
    
    .lead.text-muted {
        opacity: 1;
        transform: none;
    }
}


/* Clients Section - Premium Marquee */
.clients-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0a2f23 100%);
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.clients-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    filter: blur(40px);
    animation: shapeFloat 20s infinite linear;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(6, 84, 60, 0.03) 0%, transparent 70%);
    animation-delay: -10s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: -5s;
}

.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--impotent-text);
    border-radius: 50%;
    opacity: 0.05;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; top: 60%; left: 80%; animation-delay: 3s; }
.particle:nth-child(3) { width: 10px; height: 10px; top: 40%; right: 20%; animation-delay: 6s; }
.particle:nth-child(4) { width: 5px; height: 5px; bottom: 30%; left: 30%; animation-delay: 9s; }
.particle:nth-child(5) { width: 7px; height: 7px; bottom: 40%; right: 40%; animation-delay: 12s; }

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
}

.clients-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Marquee Container */
.clients-marquee-container {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    padding: 20px 0;
}

.marquee-track[data-speed="slow"] {
    animation: marqueeScroll 50s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.marquee-content {
    display: flex;
    gap: 50px;
    padding-right: 50px;
}

/* Client Logo Card */
.client-logo {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    min-width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    cursor: pointer;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    opacity: 0.8;
    transition: all 0.4s ease;
    object-fit: contain;
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Logo Overlay */
.logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-align: center;
}

.client-logo:hover .logo-overlay {
    transform: translateY(0);
}

.logo-name {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Stats Counter */
.clients-stats {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--impotent-text);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, -100px);
    }
    50% {
        transform: translate(200px, 0);
    }
    75% {
        transform: translate(100px, 100px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes badgeGlow {
    0% {
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 5px 20px rgba(255, 215, 0, 0.3),
            0 0 30px rgba(255, 215, 0, 0.2);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .client-logo {
        min-width: 160px;
        height: 110px;
        padding: 25px;
    }
    
    .marquee-content {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .clients-section {
        padding: 4rem 0;
    }
    
    .client-logo {
        min-width: 140px;
        height: 100px;
        padding: 20px;
    }
    
    .client-logo img {
        max-height: 50px;
    }
    
    .marquee-content {
        gap: 30px;
    }
    
    .clients-marquee-container {
        padding: 30px 0;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
}

@media (max-width: 767.98px) {
    .clients-section {
        padding: 3rem 0;
    }
    
    .clients-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .display-5 {
        font-size: 2.2rem;
    }
    
    .client-logo {
        min-width: 120px;
        height: 90px;
        padding: 15px;
    }
    
    .client-logo img {
        max-height: 40px;
    }
    
    .marquee-content {
        gap: 25px;
    }
    
    .clients-marquee-container {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .clients-section {
        padding: 2.5rem 0;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .client-logo {
        min-width: 100px;
        height: 80px;
        padding: 12px;
    }
    
    .client-logo img {
        max-height: 35px;
    }
    
    .marquee-content {
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .bg-shape,
    .particle,
    .clients-badge,
    .marquee-track,
    .client-logo,
    .stat-card {
        animation: none !important;
        transition: none !important;
    }
    
    .marquee-track {
        animation: none;
        overflow-x: auto;
        scroll-behavior: smooth;
    }
    
    .marquee-content {
        flex-wrap: nowrap;
        padding-right: 0;
    }
    
    .client-logo:hover {
        transform: none;
    }
}


/* Posters Section - Premium Gallery */
.posters-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.posters-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: floatBlur 25s infinite linear;
}

.blur-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
    background: var(--impotent-text);
    animation-delay: 0s;
}

.blur-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    background: var(--accent);
    animation-delay: -10s;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(6, 84, 60, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
}

/* Section Header */
.section-intro {
    position: relative;
    z-index: 2;
}

.creative-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.animate-badge {
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--impotent-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-heading {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.animate-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

/* Posters Grid */
.posters-gallery-container {
    position: relative;
    z-index: 2;
}

.posters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Poster Card */
.poster-card {
    perspective: 1000px;
    cursor: pointer;
}

.poster-wrapper {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.poster-card:hover .poster-wrapper {
    transform: translateY(-10px) rotateX(5deg) scale(1.02);
}

/* Poster Image */
.poster-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--primary);
    box-shadow: 
        0 15px 35px rgba(6, 84, 60, 0.1),
        0 5px 15px rgba(6, 84, 60, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.poster-card:hover .poster-image {
    box-shadow: 
        0 25px 50px rgba(6, 84, 60, 0.2),
        0 15px 30px rgba(6, 84, 60, 0.15);
}

.poster-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.poster-card:hover .poster-image img {
    transform: scale(1.08);
}

/* Poster Overlay */
.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(6, 84, 60, 0.1) 30%,
        rgba(6, 84, 60, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
}

.poster-card:hover .poster-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content {
    color: var(--primary);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.poster-card:hover .overlay-content {
    transform: translateY(0);
}

.poster-category {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--impotent-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.poster-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.poster-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View Project Button */
.view-project {
    background: var(--impotent-text);
    border: none;
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(5px);
    opacity: 0;
}

.poster-card:hover .view-project {
    transform: translateY(0);
    opacity: 1;
}

.view-project:hover {
    background: #ffed4e;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.view-project i {
    transition: transform 0.3s ease;
}

.view-project:hover i {
    transform: translateX(3px);
}

/* Poster Tags */
.poster-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding: 0 5px;
}

.tag {
    background: rgba(6, 84, 60, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.poster-card:hover .tag {
    background: rgba(255, 215, 0, 0.15);
    color: var(--impotent-text);
    transform: translateY(-2px);
}

/* CTA Button */
.btn-portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary);
    border: 2px solid var(--border);
    color: var(--accent);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 84, 60, 0.1);
}

.btn-portfolio-cta:hover {
    background: var(--impotent-text);
    border-color: var(--impotent-text);
    color: var(--dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-portfolio-cta:hover .btn-icon {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-portfolio-cta:hover .btn-glow {
    left: 100%;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--impotent-text);
    color: var(--dark);
    transform: rotate(90deg);
}

.lightbox-image-container {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-info {
    padding: 30px;
    background: var(--primary);
}

.lightbox-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.lightbox-category {
    color: var(--impotent-text);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.lightbox-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Animations */
@keyframes floatBlur {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lightboxSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .posters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .posters-section {
        padding: 3rem 0;
    }
    
    .creative-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .display-5 {
        font-size: 2.2rem;
    }
    
    .posters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .poster-image img {
        height: 250px;
    }
    
    .btn-portfolio-cta {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .posters-section {
        padding: 2.5rem 0;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .poster-overlay {
        padding: 20px;
    }
    
    .poster-title {
        font-size: 1.1rem;
    }
    
    .poster-description {
        font-size: 0.85rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-image-container {
        height: 50vh;
    }
    
    .btn-portfolio-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .bg-blur,
    .animate-badge,
    .animate-heading,
    .animate-subtitle,
    .poster-wrapper,
    .poster-image img,
    .poster-overlay,
    .btn-portfolio-cta,
    .view-project,
    .lightbox-modal,
    .lightbox-content {
        animation: none !important;
        transition: none !important;
    }
    
    .animate-heading,
    .animate-subtitle {
        opacity: 1;
        transform: none;
    }
    
    .poster-overlay {
        display: none;
    }
}

/* Mobile Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    .poster-card {
        cursor: default;
    }
    
    .poster-overlay {
        display: flex;
        opacity: 0.9;
        transform: translateY(0);
    }
    
    .overlay-content {
        transform: translateY(0);
    }
    
    .view-project {
        opacity: 1;
        transform: translateY(0);
    }
    
    .poster-card:active .poster-wrapper {
        transform: translateY(-5px);
    }
}


/* Testimonials Section - Premium Carousel */
.testimonials-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    animation: orbFloat 20s infinite linear;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(6, 84, 60, 0.05) 0%, transparent 70%);
    animation-delay: -10s;
}

.quote-pattern {
    position: absolute;
    font-size: 20rem;
    color: rgba(6, 84, 60, 0.03);
    font-family: Georgia, serif;
    font-weight: 900;
    opacity: 0.5;
    animation: quoteFloat 30s infinite linear;
}

.quote-pattern:nth-child(3) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.quote-pattern:nth-child(4) {
    bottom: 10%;
    right: 5%;
    animation-delay: -15s;
}

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
}

.testimonial-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.animate-badge {
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--impotent-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-heading {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.animate-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-carousel {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    box-shadow: 
        0 20px 40px rgba(6, 84, 60, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    opacity: 0.4;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Testimonial Card */
.testimonial-card {
    background: var(--primary);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 
        0 15px 35px rgba(6, 84, 60, 0.1),
        0 5px 15px rgba(6, 84, 60, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(6, 84, 60, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(6, 84, 60, 0.15),
        0 10px 20px rgba(6, 84, 60, 0.1);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(6, 84, 60, 0.2);
}

/* Testimonial Content */
.testimonial-content {
    margin-top: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--impotent-text);
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(6, 84, 60, 0.1);
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--impotent-text);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.client-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.client-rating {
    color: var(--impotent-text);
    font-size: 0.9rem;
}

/* Testimonial Stats */
.testimonial-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(6, 84, 60, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--impotent-text);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(6, 84, 60, 0.1);
}

.carousel-btn:hover {
    background: var(--impotent-text);
    border-color: var(--impotent-text);
    color: var(--dark);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: var(--border);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--impotent-text);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.indicator:hover {
    transform: scale(1.2);
}

/* Trust Badges */
.trust-badges {
    position: relative;
    z-index: 2;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--impotent-text);
}

.trust-badge span {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Animations */
@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(50px, -50px) rotate(5deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-50px, 50px) rotate(-5deg);
        opacity: 0.3;
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .testimonials-carousel {
        padding: 30px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-carousel {
        padding: 25px;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .display-5 {
        font-size: 2.2rem;
    }
    
    .testimonials-carousel {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .trust-badge {
        padding: 15px;
    }
}

@media (max-width: 575.98px) {
    .testimonials-section {
        padding: 2.5rem 0;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .testimonials-carousel {
        padding: 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .bg-orb,
    .quote-pattern,
    .animate-badge,
    .animate-heading,
    .animate-subtitle,
    .carousel-track,
    .testimonial-slide,
    .testimonial-card,
    .carousel-btn,
    .trust-badge {
        animation: none !important;
        transition: none !important;
    }
    
    .animate-heading,
    .animate-subtitle {
        opacity: 1;
        transform: none;
    }
    
    .testimonial-slide {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    .testimonial-card {
        cursor: default;
    }
    
    .testimonial-card:active {
        transform: scale(0.98);
    }
    
    .carousel-btn {
        width: 60px;
        height: 60px;
    }
}


/* CTA Section - Premium Styling */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    animation: glowPulse 8s ease-in-out infinite alternate;
}

.glow-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation-delay: 2s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: shapeFloat 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    border-radius: 50%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 25%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 15s;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--impotent-text);
    border-radius: 50%;
    opacity: 0.1;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { width: 6px; height: 6px; top: 20%; left: 15%; animation-delay: 0s; }
.particle:nth-child(2) { width: 4px; height: 4px; top: 40%; right: 20%; animation-delay: 3s; }
.particle:nth-child(3) { width: 8px; height: 8px; top: 60%; left: 30%; animation-delay: 6s; }
.particle:nth-child(4) { width: 5px; height: 5px; top: 30%; right: 30%; animation-delay: 9s; }
.particle:nth-child(5) { width: 7px; height: 7px; top: 70%; left: 40%; animation-delay: 12s; }
.particle:nth-child(6) { width: 3px; height: 3px; top: 50%; right: 10%; animation-delay: 15s; }

/* CTA Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.cta-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-arrow {
    transition: transform 0.3s ease;
}

.cta-badge:hover .badge-arrow {
    transform: translateX(5px);
}

.animate-badge {
    animation: badgeSlide 1s ease-out;
}

/* Heading */
.animate-heading {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--impotent-text), transparent);
    border-radius: 2px;
    animation: underlinePulse 2s ease-in-out infinite;
}

/* Subtitle */
.animate-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.highlight {
    color: var(--impotent-text);
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    opacity: 0.3;
    border-radius: 1px;
}

/* CTA Buttons */
.cta-buttons {
    position: relative;
    z-index: 2;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Primary CTA Button */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.2);
    min-width: 220px;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(255, 215, 0, 0.4),
        0 10px 20px rgba(255, 215, 0, 0.3);
    color: var(--dark);
}

.btn-cta-primary:active {
    transform: translateY(-2px) scale(0.98);
    animation: buttonClick 0.3s ease;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-cta-primary:hover .btn-icon {
    transform: rotate(20deg) scale(1.2);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-arrow {
    transform: translateX(8px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-cta-primary:hover .btn-glow {
    left: 100%;
}

.btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--impotent-text);
    opacity: 0;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* WhatsApp CTA Button */
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(37, 211, 102, 0.3),
        0 5px 15px rgba(37, 211, 102, 0.2);
    min-width: 220px;
}

.btn-cta-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(37, 211, 102, 0.4),
        0 10px 20px rgba(37, 211, 102, 0.3);
    color: var(--primary);
}

.btn-cta-whatsapp:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-cta-whatsapp .btn-icon {
    font-size: 1.5rem;
}

.btn-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover .btn-badge {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-cta-whatsapp:hover .btn-shine {
    left: 100%;
}

/* CTA Options */
.cta-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.option-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.option-link:hover {
    color: var(--impotent-text);
    transform: translateY(-2px);
}

.option-link i {
    font-size: 1rem;
}

.option-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--impotent-text);
    font-size: 1.2rem;
}

/* Gallery Layout */
.video-gallery-container { position: relative; width: 100%; }
.grid-wrapper { overflow: hidden; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card { border-radius: 14px; overflow: hidden; background: #000; }
.video-wrapper { position: relative; width: 100%; aspect-ratio: 9 / 16; }
.video-element { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0));
}
.play-control {
  width: 54px; height: 54px; border: 0; border-radius: 999px;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
}

/* Desktop nav */
.grid-navigation { display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
.nav-btn {
  width: 42px; height: 42px; border-radius: 999px; border: 0;
  cursor: pointer; background: rgba(0,0,0,.08);
}

/* Mobile slider */
.single-grid-wrapper { overflow: hidden; }
.single-grid-track {
  display: flex; gap: 12px;
  transition: transform .35s ease;
  will-change: transform;
}
.single-grid-track .video-card { min-width: 100%; }
.mobile-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 999px; border: 0;
  cursor: pointer; background: rgba(0,0,0,.18); color: #fff;
}
.prev-mobile { left: 10px; }
.next-mobile { right: 10px; }


/* MOBILE: show exactly 1 video at a time */
@media (max-width: 991.98px) {
  .single-grid-wrapper { overflow: hidden; width: 100%; }
  .single-grid-track {
    display: flex;
    gap: 0;                 /* IMPORTANT: no gap */
    transition: transform .35s ease;
    will-change: transform;
  }
  .single-grid-track .video-card {
    flex: 0 0 100%;         /* each card takes full width */
    width: 100%;
  }
}


/* Wave Decoration */
.wave-decoration {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.wave-decoration svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: var(--primary);
    opacity: 0.05;
    animation: waveFloat 20s linear infinite;
}

/* Animations */
@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(40px, -40px) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
        opacity: 0.3;
    }
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, -100px);
    }
    50% {
        transform: translate(200px, 0);
    }
    75% {
        transform: translate(100px, 100px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes badgeSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlinePulse {
    0%, 100% {
        opacity: 0.5;
        width: 100%;
    }
    50% {
        opacity: 1;
        width: 80%;
        left: 10%;
    }
}

@keyframes buttonClick {
    0% {
        transform: translateY(-5px) scale(1.05);
    }
    50% {
        transform: translateY(0) scale(0.95);
    }
    100% {
        transform: translateY(-2px) scale(1.02);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.05);
    }
}

@keyframes waveFloat {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .btn-cta-primary,
    .btn-cta-whatsapp {
        min-width: 200px;
        padding: 16px 35px;
    }
}

@media (max-width: 991.98px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .button-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        max-width: 350px;
    }
    
    .cta-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .option-divider {
        display: none;
    }
    
    .trust-indicators {
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .display-5 {
        font-size: 2.2rem;
    }
    
    .btn-cta-primary,
    .btn-cta-whatsapp {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-whatsapp {
        padding: 14px 25px;
    }
    
    .wave-decoration {
        height: 80px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .bg-glow,
    .shape,
    .particle,
    .animate-badge,
    .animate-heading,
    .animate-subtitle,
    .btn-cta-primary,
    .btn-cta-whatsapp,
    .btn-glow,
    .btn-shine,
    .btn-pulse,
    .wave-decoration svg,
    .text-gradient::after,
    .badge-arrow,
    .btn-arrow,
    .btn-icon {
        animation: none !important;
        transition: none !important;
    }
    
    .animate-heading,
    .animate-subtitle {
        opacity: 1;
        transform: none;
    }
    
    .btn-cta-primary:hover,
    .btn-cta-whatsapp:hover {
        transform: none;
    }
}

/* Mobile Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    .btn-cta-primary:active,
    .btn-cta-whatsapp:active {
        transform: scale(0.95);
    }
    
    .btn-glow,
    .btn-shine {
        display: none;
    }
}


/*----------------------------------------------------------------------------------------------------------------------*/



/* About Page - Premium Styling */
.about-page {
    overflow-x: hidden;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #0a2f23 100%);
    color: var(--primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    top: -70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    animation: glowFloat 20s infinite linear;
}

.glow-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(6, 84, 60, 0.1) 0%, transparent 70%);
    animation-delay: -10s;
}

.bg-shapes .shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: shapeFloat 25s infinite linear;
}

.shape-1 { width: 100px; height: 100px; top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 150px; height: 150px; bottom: 30%; right: 15%; animation-delay: 8s; }
.shape-3 { width: 80px; height: 80px; top: 60%; left: 20%; animation-delay: 16s; }

/* Hero Content */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.animate-badge {
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

.text-gradient {
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-heading {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.animate-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--impotent-text);
    margin-bottom: 5px;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover .image-wrapper {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    pointer-events: none;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--primary);
}

.image-overlay span {
    display: block;
    color: var(--impotent-text);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* Story Section */
.story-section {
    background: var(--primary);
}

.story-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.pattern-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    opacity: 0.1;
}

.line-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 1px;
    animation: lineSlide 20s linear infinite;
}

.line-2 {
    bottom: 30%;
    right: 15%;
    width: 1px;
    height: 150px;
    animation: lineSlide 15s linear infinite reverse;
}

.pattern-dot {
    position: absolute;
    background: var(--impotent-text);
    border-radius: 50%;
    opacity: 0.05;
    animation: dotFloat 10s infinite linear;
}

.dot-1 { width: 20px; height: 20px; top: 40%; right: 20%; animation-delay: 0s; }
.dot-2 { width: 15px; height: 15px; bottom: 40%; left: 15%; animation-delay: 5s; }

.section-badge {
    display: inline-block;
    background: var(--impotent-text);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-highlight {
    color: var(--impotent-text);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--impotent-text), transparent);
    border-radius: 2px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-light), var(--impotent-text));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 10px;
    width: 15px;
    height: 15px;
    background: var(--impotent-text);
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.timeline-year {
    color: var(--impotent-text);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Stats Card */
.stats-card {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(6, 84, 60, 0.1);
    border: 1px solid rgba(6, 84, 60, 0.1);
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-header h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.text-accent {
    color: var(--impotent-text);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 20px rgba(6, 84, 60, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.mission-bg .bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: circleFloat 20s infinite linear;
}

.circle-1 { width: 300px; height: 300px; top: -150px; left: -150px; animation-delay: 0s; }
.circle-2 { width: 200px; height: 200px; bottom: -100px; right: -100px; animation-delay: 10s; }
.circle-3 { width: 150px; height: 150px; top: 30%; right: 10%; animation-delay: 5s; }

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    position: relative;
    perspective: 1000px;
    cursor: pointer;
}

.mission-card .card-inner {
    background: var(--primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform: translateZ(0);
    box-shadow: 0 15px 35px rgba(6, 84, 60, 0.1);
}

.mission-card:hover .card-inner {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(6, 84, 60, 0.15);
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    position: relative;
    font-size: 2.5rem;
    color: var(--impotent-text);
    z-index: 2;
    /* Already centered by parent flexbox */
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 50%;
    opacity: 0.1;
    animation: iconGlow 3s ease-in-out infinite alternate;
}

.card-title {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.card-highlight span {
    background: rgba(255, 215, 0, 0.1);
    color: var(--impotent-text);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mission-card:hover .card-highlight span {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
    border-radius: 20px;
    pointer-events: none;
}

.mission-card:hover .card-shine {
    left: 100%;
}

/* Team Section */
.team-section {
    background: var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    perspective: 1000px;
}

.member-card {
    position: relative;
    background: var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(6, 84, 60, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.team-member:hover .member-card {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(6, 84, 60, 0.15);
}

.member-image {
    position: relative;
    /* allow image to determine its height so it displays fully */
    height: auto;
    overflow: visible;
    text-align: center;
}

.member-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* ensure entire photo is visible */
    transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 84, 60, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--impotent-text);
    transform: translateY(-3px);
}

.member-info {
    padding: 25px;
}

.member-name {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-role {
    color: var(--impotent-text);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: rgba(6, 84, 60, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.team-member:hover .skill-tag {
    background: rgba(255, 215, 0, 0.15);
    color: var(--impotent-text);
    transform: translateY(-2px);
}

/* Team Stats */
.team-stats {
    border-top: 1px solid rgba(6, 84, 60, 0.1);
    padding-top: 40px;
}

.team-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 15px;
    border: 1px solid rgba(6, 84, 60, 0.1);
    transition: all 0.3s ease;
}

.team-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 84, 60, 0.1);
}

.team-stat i {
    font-size: 2.5rem;
    color: var(--impotent-text);
}

.team-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    color: var(--primary);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: cover;
    animation: waveFloat 20s linear infinite;
}

.bg-sparkle {
    position: absolute;
    background: var(--impotent-text);
    border-radius: 50%;
    opacity: 0.1;
    animation: sparkleFloat 10s infinite linear;
}

.sparkle-1 { width: 10px; height: 10px; top: 20%; left: 10%; animation-delay: 0s; }
.sparkle-2 { width: 15px; height: 15px; top: 40%; right: 20%; animation-delay: 3s; }
.sparkle-3 { width: 8px; height: 8px; bottom: 30%; left: 30%; animation-delay: 6s; }

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.cta-content .animate-heading {
    animation-delay: 0.3s;
}

.cta-content .animate-subtitle {
    animation-delay: 0.5s;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
    color: var(--dark);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Animations */
@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, -40px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); opacity: 0.3; }
    66% { transform: translate(-20px, 20px) rotate(240deg); opacity: 0.6; }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollWheel {
    0% { height: 0; opacity: 0; }
    30% { height: 30px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}

@keyframes lineSlide {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-20px); }
    50% { transform: translateX(0) translateY(-40px); }
    75% { transform: translateX(-20px) translateY(-20px); }
}

@keyframes dotFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

@keyframes circleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    33% { transform: translate(50px, -50px) rotate(120deg); opacity: 0.5; }
    66% { transform: translate(-30px, 30px) rotate(240deg); opacity: 0.3; }
}

@keyframes iconGlow {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(1.1); }
}

@keyframes waveFloat {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes sparkleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.1; }
    33% { transform: translate(40px, -40px); opacity: 0.3; }
    66% { transform: translate(-30px, 30px); opacity: 0.1; }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .about-hero {
        padding: 80px 0;
        min-height: auto;
    }
    
    .image-wrapper {
        transform: none;
        margin-top: 50px;
    }
    
    .hero-image:hover .image-wrapper {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stat {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -26px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .bg-glow,
    .shape,
    .animate-badge,
    .animate-heading,
    .animate-subtitle,
    .wheel,
    .pattern-line,
    .pattern-dot,
    .bg-circle,
    .icon-glow,
    .card-shine,
    .member-card,
    .bg-wave,
    .bg-sparkle,
    .image-wrapper,
    .stat-card,
    .team-stat,
    .btn-cta-primary,
    .btn-cta-whatsapp {
        animation: none !important;
        transition: none !important;
    }
    
    .animate-heading,
    .animate-subtitle {
        opacity: 1;
        transform: none;
    }
    
    .image-wrapper {
        transform: none;
    }
}



/*-------------------------------------------------------------------------------------------------*/

/* Services Page - Premium Styling */
.services-page {
    overflow-x: hidden;
}

/* Hero Header */
.services-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #0a2f23 100%);
    color: var(--primary);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-particles .particle {
    position: absolute;
    background: var(--impotent-text);
    border-radius: 50%;
    opacity: 0.1;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; top: 40%; right: 20%; animation-delay: 3s; }
.particle:nth-child(3) { width: 10px; height: 10px; top: 60%; left: 30%; animation-delay: 6s; }
.particle:nth-child(4) { width: 5px; height: 5px; top: 30%; right: 30%; animation-delay: 9s; }
.particle:nth-child(5) { width: 7px; height: 7px; top: 70%; left: 40%; animation-delay: 12s; }

/* Hero Content */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.animate-badge {
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-heading {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.animate-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

/* Service Menu - Fully Responsive */
.service-menu {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.service-menu-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

/* Menu Option */
.menu-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    min-width: 100px;
    flex: 1;
    user-select: none;
}

.menu-option:hover {
    background: rgba(6, 84, 60, 0.05);
    transform: translateY(-3px);
    border-color: rgba(6, 84, 60, 0.1);
}

.menu-option.selected {
    background: linear-gradient(135deg, var(--accent), var(--dark));
    border-color: var(--impotent-text);
    box-shadow: 0 10px 25px rgba(6, 84, 60, 0.15);
}

.menu-option.selected:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 84, 60, 0.2);
}

/* Menu Icon */
.menu-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: rgba(6, 84, 60, 0.1);
    transition: all 0.3s ease;
}

.menu-option.selected .menu-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.menu-option i {
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.menu-option.selected i {
    color: var(--impotent-text);
}

/* Option Text */
.option-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.menu-option.selected .option-text {
    color: var(--primary);
    font-weight: 700;
}

/* Option Indicator */
.option-indicator {
    width: 0;
    height: 3px;
    background: var(--impotent-text);
    border-radius: 2px;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.menu-option.selected .option-indicator {
    width: 30px;
}

/* Touch Feedback */
.menu-option:active {
    transform: scale(0.98);
}

/* Responsive Design */
/* Tablet */
@media (max-width: 991.98px) {
    .service-menu {
        max-width: 700px;
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .service-menu-container {
        gap: 0.75rem;
        padding: 0.625rem;
    }
    
    .menu-option {
        padding: 0.875rem 1rem;
        min-width: 90px;
    }
    
    .menu-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0.625rem;
    }
    
    .menu-option i {
        font-size: 1.25rem;
    }
    
    .option-text {
        font-size: 0.875rem;
    }
}

/* Large Mobile */
@media (max-width: 767.98px) {
    .service-menu {
        max-width: 100%;
        margin: 1rem auto;
        padding: 0 0.75rem;
    }
    
    .service-menu-container {
        gap: 0.5rem;
        padding: 0.5rem;
        border-radius: 12px;
    }
    
    .menu-option {
        padding: 0.75rem 0.875rem;
        min-width: 80px;
        border-radius: 10px;
    }
    
    .menu-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0.5rem;
    }
    
    .menu-option i {
        font-size: 1.125rem;
    }
    
    .option-text {
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .menu-option:hover {
        transform: translateY(-2px);
    }
    
    .menu-option.selected {
        box-shadow: 0 8px 20px rgba(6, 84, 60, 0.15);
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .service-menu {
        padding: 0 0.5rem;
    }
    
    .service-menu-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.5rem;
        scrollbar-width: thin;
        scrollbar-color: var(--accent) transparent;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-menu-container::-webkit-scrollbar {
        height: 4px;
    }
    
    .service-menu-container::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 10px;
    }
    
    .service-menu-container::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 10px;
    }
    
    .menu-option {
        flex: 0 0 auto;
        min-width: 100px;
        padding: 0.625rem 0.75rem;
    }
    
    .menu-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.375rem;
    }
    
    .menu-option i {
        font-size: 1rem;
    }
    
    .option-text {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .option-indicator {
        height: 2px;
    }
    
    .menu-option.selected .option-indicator {
        width: 25px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .service-menu-container {
        gap: 0.375rem;
    }
    
    .menu-option {
        min-width: 85px;
        padding: 0.5rem 0.625rem;
    }
    
    .menu-icon {
        width: 32px;
        height: 32px;
    }
    
    .menu-option i {
        font-size: 0.875rem;
    }
    
    .option-text {
        font-size: 0.7rem;
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .service-menu {
        margin: 0.75rem auto;
    }
    
    .service-menu-container {
        padding: 0.5rem;
    }
    
    .menu-option {
        padding: 0.5rem 0.75rem;
    }
    
    .menu-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.375rem;
    }
    
    .option-text {
        font-size: 0.75rem;
    }
}

/* Accessibility & Focus States */
.menu-option:focus-visible {
    outline: 2px solid var(--impotent-text);
    outline-offset: 2px;
    border-color: transparent;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .menu-option:hover {
        transform: none;
        background: transparent;
        border-color: transparent;
    }
    
    .menu-option.selected:hover {
        transform: scale(1.02);
    }
    
    .menu-option:active {
        background: rgba(6, 84, 60, 0.1);
        transform: scale(0.98);
    }
}

/* Reduce Motion Support */
@media (prefers-reduced-motion: reduce) {
    .service-menu-container,
    .menu-option,
    .menu-icon,
    .option-indicator,
    .menu-option i {
        transition: none !important;
        transform: none !important;
    }
}

/* Loading State */
.service-menu.loading .menu-option {
    opacity: 0.6;
    pointer-events: none;
}

/* Active State Animation */
@keyframes pulseSelected {
    0% {
        box-shadow: 0 10px 25px rgba(6, 84, 60, 0.15);
    }
    50% {
        box-shadow: 0 10px 25px rgba(6, 84, 60, 0.3);
    }
    100% {
        box-shadow: 0 10px 25px rgba(6, 84, 60, 0.15);
    }
}

.menu-option.selected {
    animation: pulseSelected 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .menu-option.selected {
        animation: none;
    }
}
/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--border);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--impotent-text);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Services Details */
.services-details {
    background: var(--primary);
}

.services-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.pattern-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
    opacity: 0.1;
    animation: linePulse 8s ease-in-out infinite;
}

.pattern-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(6, 84, 60, 0.05);
    border-radius: 50%;
}

.service-detail {
    position: relative;
}

.detail-wrapper {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(6, 84, 60, 0.1);
    border: 1px solid rgba(6, 84, 60, 0.1);
}

.detail-badge {
    display: inline-block;
    background: var(--impotent-text);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-highlight {
    color: var(--impotent-text);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--impotent-text), transparent);
    border-radius: 2px;
}

/* Stats Preview */
.stats-preview {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stats-preview .stat {
    text-align: center;
}

.stats-preview .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--impotent-text);
    line-height: 1;
    margin-bottom: 5px;
}

.stats-preview .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--impotent-text);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Service CTA Button */
.btn-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    margin-top: 20px;
}

.btn-service-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
    color: var(--dark);
}

.btn-service-cta i:last-child {
    transition: transform 0.3s ease;
}

.btn-service-cta:hover i:last-child {
    transform: translateX(5px);
}

/* Detail Image */
.detail-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail:hover .image-container {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail:hover .image-container img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(6, 84, 60, 0.9), transparent);
    color: var(--primary);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-detail:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.overlay-badge {
    display: inline-block;
    background: var(--impotent-text);
    color: var(--dark) !important;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.image-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Additional Services */
.additional-services {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.section-badge {
    display: inline-block;
    background: var(--impotent-text);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog card image perfect alignment */
.blog-cover {
    position: relative;
    width: 100%;
    height: 600px;          /* control banner height */
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.blog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* magic */
    display: block;
}


@media (max-width: 768px) {
  .blog-cover {
      height: 200px;
  }
}
.coming-icon {
    text-align: center;
    margin-bottom: 20px;
}

/* Hourglass Animation */
.slow-rotate {
    font-size: 60px;
    color: #0d6efd;
    display: inline-block;
    animation: slowRotate 14s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}




.coming-section {
    padding: 80px 15px;
    display: flex;
    justify-content: center;
}

.coming-card {
    width: 100%;
    max-width: 850px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 60px 40px;
}

.coming-icon {
    font-size: 60px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.coming-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.coming-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.coming-tags {
    margin-bottom: 30px;
}

.coming-tags span {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 8px 14px;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
    background: #f9f9f9;
}

.back-btn {
    display: inline-block;
    background: #0b3d2e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}


@media (max-width: 768px) {
  .coming-card {
      padding: 35px 20px;
  }

  .coming-card h2 {
      font-size: 22px;
  }

  .coming-text {
      font-size: 15px;
  }

  .coming-icon {
      font-size: 40px;
  }

  .coming-tags span {
      font-size: 12px;
      padding: 6px 10px;
  }
}


/* Category badge position */
.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}


.service-card {
    perspective: 1000px;
    cursor: pointer;
}

.card-wrapper {
    background: var(--primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform: translateZ(0);
    box-shadow: 0 15px 35px rgba(6, 84, 60, 0.1);
    border: 1px solid rgba(6, 84, 60, 0.1);
}

.service-card:hover .card-wrapper {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(6, 84, 60, 0.15);
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    position: relative;
    font-size: 2.5rem;
    color: var(--impotent-text);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 50%;
    opacity: 0.1;
    animation: iconGlow 3s ease-in-out infinite alternate;
}

.card-title {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.card-features .feature {
    background: rgba(6, 84, 60, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover .card-features .feature {
    background: rgba(255, 215, 0, 0.15);
    color: var(--impotent-text);
    transform: translateY(-2px);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--impotent-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.card-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .card-link {
    gap: 12px;
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    background: var(--primary);
}

.process-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.pattern-step {
    position: absolute;
    border: 2px dashed rgba(6, 84, 60, 0.1);
    border-radius: 50%;
    animation: stepFloat 20s infinite linear;
}

.step-1 { width: 100px; height: 100px; top: 20%; left: 10%; animation-delay: 0s; }
.step-2 { width: 150px; height: 150px; top: 40%; right: 15%; animation-delay: 5s; }
.step-3 { width: 80px; height: 80px; bottom: 30%; left: 20%; animation-delay: 10s; }
.step-4 { width: 120px; height: 120px; bottom: 40%; right: 10%; animation-delay: 15s; }

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(6, 84, 60, 0.2);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(6, 84, 60, 0.1);
    border: 1px solid rgba(6, 84, 60, 0.1);
}

.step-title {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step-text {
    color: var(--text-light);
    margin-bottom: 15px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.step-features span {
    background: rgba(255, 215, 0, 0.1);
    color: var(--impotent-text);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.step-connector {
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-light), transparent);
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    color: var(--primary);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-radial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.bg-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shineMove 3s linear infinite;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.cta-content .animate-heading {
    animation-delay: 0.3s;
}

.cta-content .animate-subtitle {
    animation-delay: 0.5s;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
    color: var(--dark);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-cta-primary:hover .btn-glow {
    left: 100%;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-whatsapp:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--impotent-text);
}

/* Animations */
@keyframes waveFloat {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes particleFloat {
    0% { transform: translate(0, 0); }
    25% { transform: translate(100px, -100px); }
    50% { transform: translate(200px, 0); }
    75% { transform: translate(100px, 100px); }
    100% { transform: translate(0, 0); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollWheel {
    0% { height: 0; opacity: 0; }
    30% { height: 30px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}

@keyframes linePulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

@keyframes iconGlow {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(1.1); }
}

@keyframes stepFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes shineMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-preview .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .services-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .service-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .detail-wrapper {
        padding: 30px;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-connector {
        left: 35px;
        top: 70px;
        bottom: -30px;
        height: 30px;
        width: 2px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-nav {
        width: 100%;
    }
    
    .nav-item {
        min-width: 80px;
        padding: 12px 15px;
    }
    
    .detail-badge,
    .section-badge,
    .cta-badge {
        font-size: 0.7rem;
        padding: 8px 15px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .stats-preview {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .cta-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .hero-badge,
    .detail-badge,
    .section-badge,
    .cta-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .detail-wrapper {
        padding: 20px;
    }
    
    .btn-service-cta {
        width: 100%;
        justify-content: center;
    }
    
    .image-overlay {
        padding: 15px;
    }
    
    .image-overlay h4 {
        font-size: 1rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .bg-wave,
    .particle,
    .animate-badge,
    .animate-heading,
    .animate-subtitle,
    .wheel,
    .pattern-line,
    .icon-glow,
    .pattern-step,
    .bg-shine,
    .image-container,
    .card-wrapper,
    .btn-service-cta,
    .btn-cta-primary,
    .btn-cta-whatsapp,
    .btn-glow,
    .nav-item {
        animation: none !important;
        transition: none !important;
    }
    
    .animate-heading,
    .animate-subtitle {
        opacity: 1;
        transform: none;
    }
    
    .image-container {
        transform: none;
    }
    
    .image-overlay {
        opacity: 1;
        transform: none;
    }
    
    .nav-item:hover {
        transform: none;
    }
}


.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.simple-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 300px;
}

.simple-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(5, 53, 39, 0.1);
}

.simple-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.simple-item:hover .simple-image {
    transform: scale(1.05);
}

/* Website Projects Styles */
.website-projects {
    background-color: var(--primary);
}

.project-card {
    background: var(--primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(5, 53, 39, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 53, 39, 0.15);
}

.project-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}

.project-content {
    padding: 1rem 1.5rem;
}

.project-badge {
    display: inline-block;
    background-color: var(--impotent-text);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-size: 0.9375rem;
}

.feature-item i {
    color: var(--impotent-text);
    font-size: 1rem;
}

/* Premium CTA Styles */
.premium-cta {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    position: relative;
    overflow: hidden;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-text {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.875rem;
}

.premium-badge i {
    color: var(--dark);
}

.text-gradient {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e, var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-premium-primary, .btn-premium-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-premium-primary {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
}

.btn-premium-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: var(--primary);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-premium-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.trust-indicators {
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--impotent-text);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .simple-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .project-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .simple-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .simple-item {
        height: 250px;
    }
    
    .project-image img {
        height: 350px;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium-primary, .btn-premium-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .simple-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 10px;
    }
    
    .simple-item {
        height: 200px;
    }
    
    .simple-portfolio, .website-projects {
        padding: 3rem 0;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-image img {
        height: 300px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-description {
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .simple-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .simple-item {
        height: 180px;
    }
    
    .project-image img {
        height: 250px;
    }
    
    .trust-indicators .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-card {
        padding: 1rem;
    }
}

/* Image Loading */
.simple-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.simple-image.loaded {
    opacity: 1;
}



/* Hero Section */
.portfolio-hero {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    color: var(--primary);
}

.portfolio-hero h1 {
    color: var(--primary);
}

/* Portfolio Stats */
.portfolio-stats {
    background-color: var(--secondary);
}

.stat-box {
    padding: 1.5rem;
    background: var(--primary);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Simple Grid Styles */
.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.simple-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 300px;
}

.simple-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(5, 53, 39, 0.1);
}

.simple-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.simple-item:hover .simple-image {
    transform: scale(1.05);
}

/* Website Projects */
.website-projects-grid {
    margin-top: 2rem;
}

.project-card {
    background: var(--primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}

.project-content {
    padding: 1rem 0;
}

.project-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 0.9375rem;
}

/* Premium CTA Styles */
.premium-cta {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    position: relative;
    overflow: hidden;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-text {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.875rem;
}

.premium-badge i {
    color: var(--dark);
}

.text-gradient {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e, var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-premium-primary, .btn-premium-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-premium-primary {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
}

.btn-premium-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: var(--primary);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-premium-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.trust-indicators {
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--impotent-text);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .simple-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .simple-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .simple-item {
        height: 250px;
    }
    
    .project-image img {
        height: 350px;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium-primary, .btn-premium-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .simple-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 10px;
    }
    
    .simple-item {
        height: 200px;
    }
    
    .portfolio-sections {
        padding: 3rem 0;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-image img {
        height: 300px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .simple-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .simple-item {
        height: 180px;
    }
    
    .project-image img {
        height: 250px;
    }
    
    .trust-indicators .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-card {
        padding: 1rem;
    }
}

/* Image Loading */
.simple-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.simple-image.loaded {
    opacity: 1;
}


/* Page Header */
.page-header-section {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    color: var(--primary);
}

/* Blog Cards */
.card {
    transition: var(--transition);
    background: var(--primary);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--impotent-text);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-date {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Featured Post */
.featured-post .card-img-top {
    height: 400px;
    object-fit: cover;
}

/* Regular Blog Posts */
.blog-post .card-img-top {
    height: 200px;
    object-fit: cover;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--impotent-text);
    gap: 5px;
}

/* Post Meta */
.post-meta {
    font-size: 0.9rem;
}

/* Sidebar */
.sidebar-widget {
    background: var(--primary);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
    color: var(--text);
    font-size: 1.25rem;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--secondary);
    color: var(--text);
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
}

.categories-list a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.categories-list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.categories-list .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
}

/* Popular Posts */
.popular-image {
    width: 60px;
    height: 60px;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-content h5 a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.popular-content h5 a:hover {
    color: var(--accent);
}

/* Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--secondary);
    color: var(--text);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Pagination */
.pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.page-btn:hover {
    background: var(--secondary);
    color: var(--accent);
}

.page-btn.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.page-btn.next {
    border-color: var(--accent);
    color: var(--accent);
}

/* Premium CTA */
.premium-cta {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    position: relative;
    overflow: hidden;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-text {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.875rem;
}

.premium-badge i {
    color: var(--dark);
}

.text-gradient {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e, var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-premium-primary, .btn-premium-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-premium-primary {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
}

.btn-premium-whatsapp {
    background: var(--primary);
    color: var(--accent);
    border: 2px solid var(--primary);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-premium-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--primary);
}

.trust-indicators {
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--impotent-text);
}

/* WhatsApp Icon */
.whatsapp-icon {
    display: inline-block;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 992px) {
    .featured-post .card-img-top {
        height: 300px;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium-primary, .btn-premium-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-header-section,
    .blog-section {
        padding: 3rem 0;
    }
    
    .featured-post .card-img-top {
        height: 250px;
    }
    
    .blog-post .card-img-top {
        height: 180px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .blog-posts-grid .col-md-6 {
        width: 100%;
    }
    
    .trust-indicators .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination {
        justify-content: center;
    }
}




/* Page Header */
.page-header-section {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    color: var(--primary);
}

/* Job Cards */
.job-card {
    transition: var(--transition);
    background: var(--primary);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.job-icon {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-meta {
    font-size: 0.9rem;
}

.job-responsibilities,
.job-requirements {
    list-style: none;
    padding-left: 0;
}

.job-responsibilities li,
.job-requirements li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.job-responsibilities li:before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-requirements li:before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-tags .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border);
}

/* Why Join Us */
.benefit-card {
    background: var(--primary);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    color: var(--accent);
}

/* Future Opportunities */
.role-card {
    transition: var(--transition);
    background: var(--primary);
    cursor: default;
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent) !important;
}

.role-icon {
    color: var(--accent);
}

/* Stay Connected */
.social-card {
    transition: var(--transition);
    height: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.social-icon i {
    transition: var(--transition);
}

.social-card:hover .social-icon i {
    transform: scale(1.1);
}

/* Premium CTA */
.premium-cta {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    position: relative;
    overflow: hidden;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-text {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.875rem;
}

.premium-badge i {
    color: var(--dark);
}

.text-gradient {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e, var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-premium-primary, .btn-premium-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-premium-primary {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
}

.btn-premium-whatsapp {
    background: var(--primary);
    color: var(--accent);
    border: 2px solid var(--primary);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-premium-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--primary);
}

.trust-indicators {
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--impotent-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-card {
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium-primary, .btn-premium-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-header-section,
    .careers-openings,
    .why-join-us,
    .future-opportunities,
    .stay-connected {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .job-icon {
        width: 60px;
        height: 60px;
    }
    
    .job-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .role-card {
        padding: 1rem;
    }
    
    .trust-indicators .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .job-tags {
        margin-bottom: 1rem;
    }
    
    .job-tags .badge {
        margin-bottom: 0.25rem;
    }
}





/* Page Header */
.page-header-section {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    color: var(--primary);
}

/* Job Cards */
.job-card {
    transition: var(--transition);
    background: var(--primary);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.job-icon {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-meta {
    font-size: 0.9rem;
}

.job-responsibilities,
.job-requirements {
    list-style: none;
    padding-left: 0;
}

.job-responsibilities li,
.job-requirements li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.job-responsibilities li:before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-requirements li:before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-tags .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border);
}

/* Apply Button */
.apply-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.apply-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.apply-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Why Join Us */
.benefit-card {
    background: var(--primary);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    color: var(--accent);
}

/* Future Opportunities */
.role-card {
    transition: var(--transition);
    background: var(--primary);
    cursor: default;
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent) !important;
}

.role-icon {
    color: var(--accent);
}

/* Stay Connected */
.social-card {
    transition: var(--transition);
    height: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.social-icon i {
    transition: var(--transition);
}

.social-card:hover .social-icon i {
    transform: scale(1.1);
}

/* Premium CTA */
.premium-cta {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    position: relative;
    overflow: hidden;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-text {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.875rem;
}

.premium-badge i {
    color: var(--dark);
}

.text-gradient {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e, var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-premium-primary, .btn-premium-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-premium-primary {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
}

.btn-premium-whatsapp {
    background: var(--primary);
    color: var(--accent);
    border: 2px solid var(--primary);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-premium-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--primary);
}

.trust-indicators {
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--impotent-text);
}

/* WhatsApp Modal */
.whatsapp-icon i {
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-card {
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium-primary, .btn-premium-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-header-section,
    .careers-openings,
    .why-join-us,
    .future-opportunities,
    .stay-connected {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .job-icon {
        width: 60px;
        height: 60px;
    }
    
    .job-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .role-card {
        padding: 1rem;
    }
    
    .trust-indicators .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .job-tags {
        margin-bottom: 1rem;
    }
    
    .job-tags .badge {
        margin-bottom: 0.25rem;
    }
    
    .apply-btn {
        width: 100%;
    }
}




/* Page Header */
.page-header-section {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    color: var(--primary);
}

.page-header-section h1 {
    color: var(--primary);
}

/* Contact Section */
.contact-info-card {
    background: var(--primary);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    background-color: var(--accent);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

/* Social Links */
.contact-social {
    background: var(--primary);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.125rem;
}

.social-link.instagram { background-color: #E4405F; }
.social-link.youtube { background-color: #CD201F; }
.social-link.whatsapp { background-color: #25D366; }
.social-link.linkedin { background-color: #0A66C2; }
.social-link.facebook { background-color: #1877F2; }

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Contact Form */
.contact-form-container {
    background: var(--primary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-header h2 {
    color: var(--text);
    font-size: 1.75rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    color: var(--text);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    transition: var(--transition);
    background-color: var(--primary);
    color: var(--text);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(6, 84, 60, 0.1);
    outline: none;
}

/* FAQ Section */
.faq-section .accordion-button {
    background-color: var(--primary);
    color: var(--text);
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306543c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

/* Premium CTA Styles */
.premium-cta {
    background: linear-gradient(135deg, var(--dark), var(--accent));
    position: relative;
    overflow: hidden;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--impotent-text), #ffed4e);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-text {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.875rem;
}

.premium-badge i {
    color: var(--dark);
}

.text-gradient {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e, var(--impotent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-premium-primary, .btn-premium-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-premium-primary {
    background: linear-gradient(45deg, var(--impotent-text), #ffed4e);
    color: var(--dark);
}

.btn-premium-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: var(--primary);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-premium-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.trust-indicators {
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--impotent-text);
}

/* Button Styles */
.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.btn-accent:hover {
    background-color: var(--impotent-text);
    border-color: var(--impotent-text);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium-primary, .btn-premium-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-header-section,
    .contact-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-form-container {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .trust-indicators .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}