/* =============================================
   GELDART'S — services.css
   Clean Rebuild
   ============================================= */

/* ===== TAB BAR ===== */
.services-tab-bar {
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 77px;
    z-index: 100;
  }
  
  .services-tab-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .stab {
    background: transparent;
    border: none;
    padding: 20px 32px;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
  }
  
  .stab:hover {
    background: rgba(255,255,255,0.04);
  }
  
  .stab.active {
    border-bottom-color: var(--accent);
    background: rgba(201,151,58,0.06);
  }
  
  .stab-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
    transition: color var(--transition);
  }
  
  .stab.active .stab-title { color: var(--white); }
  .stab:hover .stab-title { color: rgba(255,255,255,0.8); }
  
  .stab-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    transition: color var(--transition);
  }
  
  .stab.active .stab-sub { color: var(--accent); opacity: 0.7; }
  
  /* ===== SERVICES CONTENT ===== */
  .services-content-section {
    background: var(--light);
    padding: 70px 0 100px;
  }
  
  .services-tab-content {
    display: none;
  }
  
  .services-tab-content.active {
    display: block;
  }
  
  .services-intro {
    margin-bottom: 3rem;
  }
  
  .services-intro h2 {
    margin-bottom: 0.6rem;
  }
  
  .services-intro p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
    max-width: 560px;
    line-height: 1.8;
  }
  
  /* ===== SERVICE CARDS GRID ===== */
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
  }
  
  .svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }
  
  /* Card with no image */
  .svc-card-no-img {
    background: var(--white);
  }
  
  .svc-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .svc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .svc-card:hover .svc-img-wrap img {
    transform: scale(1.04);
  }
  
  .svc-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .svc-body h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
    letter-spacing: 0.02em;
  }
  
  .svc-body > p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.2rem;
  }
  
  /* Service list */
  .svc-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    flex: 1;
  }
  
  .svc-list li {
    font-size: 0.825rem;
    color: var(--text);
    font-weight: 400;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
  }
  
  .svc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 1px;
    background: var(--accent);
  }
  
  /* Card no-img top accent line */
  .svc-card-no-img {
    border-top: 3px solid var(--accent);
  }
  
  /* ===== BOTTOM CTA ===== */
  .services-bottom-cta {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
  }
  
  .services-bottom-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
  }
  
  .services-bottom-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 300;
  }
  
  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 768px) {
    .services-tab-bar { top: 65px; }
  
    .stab { padding: 16px 20px; }
    .stab-title { font-size: 0.9rem; }
    .stab-sub { display: none; }
  
    .svc-grid { grid-template-columns: 1fr; }
    .svc-img-wrap { height: 220px; }
  
    .services-content-section { padding: 50px 0 100px; }
  }